How do I implement multiple currencies in my web forms?

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"/>

    • Related Articles

    • Can multiple web forms be created?

      Yes. You can create multiple web forms and have them all active at the same time. However, the number of web forms available in each module depends on the CRM Edition that is being used: 20 per module for the Enterprise Edition 10 per module for the ...
    • Can multiple web forms be created?

      Yes. You can create multiple web forms and have them all active at the same time. However, the number of web forms available in each module depends on the CRM Edition that is being used.
    • Multiple Currencies

      The multi-currency support in CRM gives you the advantage to easily handle business transactions in the global marketplace. If you regularly deal with international clients and vendors, then Multi-Currency will facilitate international buying and ...
    • Web Forms

      Web forms simplify the process of capturing visitors or users information from your website into your CRM system. They are designed to automate the importing of data from websites into CRM. Non-technical users find it easy to design and publish their ...
    • Can I create multiple web forms and then collect Leads separately?

      Yes, you can generate multiple web forms from the CRM system and post it in different web pages for collecting information. To identify separate and collective information based on the web page from which a Lead came from, you can insert hidden ...