I have a webform based off of unstyled HTML webform from a campaign. I have a hidden input field to capture the leadsource ID from a URL parameter.
Based on my source code, the Lead Source ID is being pulled with no issue, and applying to the value of the input element. However, upon submission, the leadsource that is applied to the contact is incorrect. The leadsource that should be applied is 6019, but the actual leadsource that is being applied upon submissions is 5895.
here is a snippet of my source:
<form accept-charset="UTF-8" action="https://attraction.infusionsoft.com/app/form/process/87a652e3c755a9df8b0ec048975def0b" class="infusion-form" method="POST">
<input name="inf_form_xid" type="hidden" value="87a652e3c755a9df8b0ec048975def0b" />
<input name="inf_form_name" type="hidden" value="HTMYM Registration" />
<input name="infusionsoft_version" type="hidden" value="1.68.0.84" />
<input id="LeadSourceId" name="inf_field_LeadSourceId" type="hidden" value="6019" />
I checked the Hosted version of this form, and the input for LeadSourceID is identical, and when I submit using the Hosted version, the LeadSource applies correctly. I’m not seeing any difference in my code when compared to the Hosted version.
Does anyone know why this is not posting the proper ID?