Prerequisites An active GA Connector account. In case you don’t have one yet, feel free to sign up for a 30-day free trial here. 1. Install GA Connector tracking code on your website In our setup wizard, a piece of code will be provided to you. You need to add this on the <head> portion […]
Category: Lead Source Tracking (cookie-based)
Setting up GA Connector with Consent Banners
GA Connector generally use cookies to store the tracking data from your web visitors and send them over to your CRM once they become leads. In order to become compliant with data privacy regulations such as GDPR, you need to ask consent from your website visitors before placing the cookies that will contain their tracking […]
Using GA Connector with WordPress Caching Plugins
Cache plugins can sometimes cause errors with GA Connector tracking because some plugins would cache or optimize only a portion of the tracking script. If tracking stopped working after activating a cache plugin like WP Rocket or WP Optimize, the cache plugin is more than likely to have caused the issue. Fix #1 The easiest […]
How to integrate GA Connector with Wisepops
Add Google Analytics data to Wisepops with GA Connector’s Wisepops integration. Prerequisites Installed either the GA Connector WordPress plugin or GA Connector script on your website: Setup Your Forms There are two ways to integrate GA Connector with Wisepops. If you are using Salesforce, Zoho CRM, Pipedrive CRM, Salesflare or Close CRM and has authorized GA Connector […]
Done-for-you Integration
Haven’t had a chance to install GA Connector yet? We’ll do it for you! Here’s how it works: Reach out to [email protected] and request done-for-you integration. Our team will look at your account and website, and might ask a few questions about your setup. After we’ve double-checked that the integration is possible, we’ll ask you to […]
Integrating GA Connector with LiveChat
Add Google Analytics data to LiveChat with GA Connector’s LiveChat integration. To integrate LiveChat with GA Connector, you’ll need to add a custom script to your website depending on which GA Connector version you have. If you’re using Salesforce, Zoho CRM, Pipedrive CRM, Salesflare, or Close CRM you’re likely using our API-based integration. For all […]
How to integrate GA Connector with Zoho Forms
Add Google Analytics data to Zoho Forms with GA Connector’s Zoho Forms integration. Install the custom scripts on your website Add the following GA Connector script on all pages of your website. The script must be placed before your Zoho embed code so adding it to your website’s <head> would work. Note: If you are already using […]
How to integrate GA Connector with Typeform
Add Google Analytics data to Typeform with GA Connector’s Typeform integration. Prerequisites Installed either the GA Connector WordPress plugin or GA Connector script on your website:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<script data-cfasync="false" type="text/javascript" src="https://tracker.gaconnector.com/gaconnector.js"></script> <script> function setGaconnectorHiddenFields() { var gaFields = gaconnector.getCookieValues(); for (var fieldName in gaFields) { var selectors = 'form input[name="' + fieldName + '"], form input#' + fieldName + ', form input#field_' + fieldName + ', form input[name="' + fieldName.toLowerCase() + '"], form input#' + fieldName.toLowerCase() + ', form input#field_' + fieldName.toLowerCase() + ', input[value="gaconnector_' + fieldName + '"],'; selectors += 'form textarea[name="'+fieldName+'"], form textarea#'+fieldName+', form textarea#field_'+fieldName + ', form textarea[name="'+fieldName.toLowerCase()+'"], form textarea#'+fieldName.toLowerCase()+', form textarea#field_'+fieldName.toLowerCase()+', form textarea.'+fieldName+', form textarea[name="param['+fieldName+']"]'+", form textarea[id^='field_"+fieldName+"']"; var inputs = document.querySelectorAll(selectors); if (inputs === null) { continue; } else if (typeof inputs.length === 'undefined') { inputs.value = gaFields[fieldName]; } else { for (var i = 0; i < inputs.length; i++) { inputs[i].value = gaFields[fieldName]; } } } } gaconnector.setCallback(setGaconnectorHiddenFields); setInterval(setGaconnectorHiddenFields, 1000); </script> |
Add Hidden Fields to your Typeform Open your typeform from your workspace and click Logic on the right panel. Select Personalize with data then click on Hidden Fields. This will […]
How to integrate GA Connector with Freshworks CRM (formerly Freshsales) using Classic Forms
Add Google Analytics data to Freshworks Classic Forms with GA Connector’s Freshworks integration. Prerequisites Installed either GA Connector WordPress plugin or GA Connector script on your website Already created the custom fields on your Contacts module
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<script data-cfasync="false" type="text/javascript" src="https://tracker.gaconnector.com/gaconnector.js"></script> <script> function setGaconnectorHiddenFields() { var gaFields = gaconnector.getCookieValues(); for (var fieldName in gaFields) { var selectors = 'form input[name="' + fieldName + '"], form input#' + fieldName + ', form input#field_' + fieldName + ', form input[name="' + fieldName.toLowerCase() + '"], form input#' + fieldName.toLowerCase() + ', form input#field_' + fieldName.toLowerCase() + ', input[value="gaconnector_' + fieldName + '"],'; selectors += 'form textarea[name="'+fieldName+'"], form textarea#'+fieldName+', form textarea#field_'+fieldName + ', form textarea[name="'+fieldName.toLowerCase()+'"], form textarea#'+fieldName.toLowerCase()+', form textarea#field_'+fieldName.toLowerCase()+', form textarea.'+fieldName+', form textarea[name="param['+fieldName+']"]'+", form textarea[id^='field_"+fieldName+"']"; var inputs = document.querySelectorAll(selectors); if (inputs === null) { continue; } else if (typeof inputs.length === 'undefined') { inputs.value = gaFields[fieldName]; } else { for (var i = 0; i < inputs.length; i++) { inputs[i].value = gaFields[fieldName]; } } } } gaconnector.setCallback(setGaconnectorHiddenFields); setInterval(setGaconnectorHiddenFields, 1000); </script> |
Setting up the GA Connector Fields on Classic Forms Step 1 While on the form editor, add the custom field […]
How to integrate GA Connector with Formstack
Add Google Analytics data to Formstack with GA Connector’s Forkstack integration. Prerequisites Installed either GA Connector WordPress plugin or GA Connector script on your website:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<script data-cfasync="false" type="text/javascript" src="https://tracker.gaconnector.com/gaconnector.js"></script> <script> function setGaconnectorHiddenFields() { var gaFields = gaconnector.getCookieValues(); for (var fieldName in gaFields) { var selectors = 'form input[name="' + fieldName + '"], form input#' + fieldName + ', form input#field_' + fieldName + ', form input[name="' + fieldName.toLowerCase() + '"], form input#' + fieldName.toLowerCase() + ', form input#field_' + fieldName.toLowerCase() + ', input[value="gaconnector_' + fieldName + '"],'; selectors += 'form textarea[name="'+fieldName+'"], form textarea#'+fieldName+', form textarea#field_'+fieldName + ', form textarea[name="'+fieldName.toLowerCase()+'"], form textarea#'+fieldName.toLowerCase()+', form textarea#field_'+fieldName.toLowerCase()+', form textarea.'+fieldName+', form textarea[name="param['+fieldName+']"]'+", form textarea[id^='field_"+fieldName+"']"; var inputs = document.querySelectorAll(selectors); if (inputs === null) { continue; } else if (typeof inputs.length === 'undefined') { inputs.value = gaFields[fieldName]; } else { for (var i = 0; i < inputs.length; i++) { inputs[i].value = gaFields[fieldName]; } } } } gaconnector.setCallback(setGaconnectorHiddenFields); setInterval(setGaconnectorHiddenFields, 1000); </script> |
Setting up the GA Connector Fields on Formstack Form Editor Step 1 Click on the build section and add a Short Answer field on the form that you are editing Step […]