How do I implement multiple currencies in my web forms?
There are two cases where you can use currencies in your web forms.
#1 Currencies as a drop-down list in the web form. The visitor can select the required currency.
In this case, while generating the web form, you need to include the Currency field. Once you publish the form, the currency field will be available in the form as a drop-down list with all the active currencies added in your CRM account.
#2 Currencies as a hidden field with a specified value in the web form.
In this case too, you need to include the currency field while generating the form. When the hidden value is specified, all the records generated via this web form will have the specified currency. In the generated HTML code, you need to replace the following code for the currency field
<select name='Currency'><option value='USD'>USD</option><option value='INR'>INR</option> </select>
with this code.
<input type="hidden" name="Currency" value="USD"/>