Replies: 1
I’m working on sending the GLCID and Google Ads information to Zoho CRM. Their recommendation is to add this code to the body of all pages:
html
<script type="text/javascript" src='https://crm.zoho.com/crm/javascript/zcga.js'></script>
Then, create a hidden field in the form using this code:
<input type='hidden' id="zc_gad" name="zc_gad" value=""/>
I created a hidden field with the type ‘query parameter’ named ‘zc_gad’ and set its value to ‘zc_gad’. However, the form doesn’t capture the GLCID, and it remains empty upon submission. I think this is because ‘zc_gad’ is not a query parameter in the URL.
My guess is that I need to change the field ID to ‘zc_gad,’ but I’m not sure if it will work. Can anyone provide guidance on translating this code to a form field in Formulator?
Thank you