function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AbAb 

Web 2 Lead - lead source not getting updated

Hello,

I have a lead source picklist value like "Web: XYZ"
a lead assignment rule is linked to this picklist.

When a lead is sent from website, web to lead.

the source is not assigned as  "Web: XYZ" hence the lead assignment rule is not working.

How can i make sure that the Lead source is affected to "Web: XYZ"

thank you in advance
Best Answer chosen by Ab
David Zhu 🔥David Zhu 🔥
You may add the lead source to the html code by removing other lead source picklist values except Web: XYZ.

By this, Web:XYZ is the only pick list value in the template and will be submitted through Web-to-Lead. Be sure to make web-to-lead is enabled in the setting.

<label for="lead_source">Lead Source</label><select  id="lead_source" name="lead_source">
<option value="Web">Web: XYZ</option>
</select><br>