GA Connector relies on your hidden input fields’ attributes so that it would be able to find them and fill them with tracking information. Our default GA Connector script will be able to fill your hidden fields with tracking information as long as you are able to set their id/name with its equivalent GA Connector […]
Category: Lead Source Tracking (cookie-based)
How to integrate GA Connector with Freshworks CRM (formerly Freshsales) using Smartforms
Add Google Analytics data to Freshworks Smartform with GA Connector’s Freshworks integration. Prerequisites Installed the Freshworks Smartform script on your website. These instructions assume that you have already 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> |
Create custom fields on Freshworks CRM To create custom fields on Freshworks CRM , Go […]
How to troubleshoot incorrect traffic source information
This guide applies to situations when GA Connector fields are not empty in your CRM, however, you have a reason to believe that the values in these fields aren’t correct. Below you can find the instructions on how to troubleshoot this, depending on which traffic source isn’t tracked correctly: Organic Traffic If you’re seeing (not provided) […]
Does GA Connector work when ad blockers are enabled?
API-based integration works fine with Adblock extension, but it doesn’t work with Ghostery extension. Cookie-based integration works fine with both Adblock and Ghostery extension.
Create GA Connector fields in your CRM
The purpose of these fields is to store the tracking information gathered by gaconnector.js inside your Leads, Opportunities and other CRM objects: Here is how you can add these fields to your CRM: If you’re using Salesforce, just install our package that will automatically add these custom fields for you. If you’re using Zoho CRM, just install our extension that will automatically […]
Create a MS Dynamics report with Google Analytics data
Now that you’ve added GA data to your Microsoft Dynamics CRM, you probably want to display it in a meaningful way. You probably want to see reports that will allow you to see things like the number Deals that came from a specific traffic source. In this article, we’ll go through the process of creating such […]
Troubleshooting guide for Adwords UTM tagging
This guide assumes that: GA Connector is working in general (you see GA data in your CRM). If you don’t see any GA info in your CRM, this guide unfortunately won’t help: please contact [email protected]. But it is not picking up Adwords info. Either GA Connector picks up some Adwords info (usually just source/medium), or it […]
“Channel” parameter values
Channel is calculated based on source and medium (but mostly medium): Right now, GA Connector’s calculation of channel doesn’t fully match Google Analytics standard definitions. For example, if fbclid identifier is present in the URL, the channel will be attributed to Paid Search.
How to integrate Wufoo forms with GA Connector
Yes, It is possible to integrate GA Connector (cookie-based) with Wufoo forms. You need to download the full source of your form (HTML/CSS) and edit the form by adding the hidden fields. To do that, follow the steps below: Login in your Wufoo account Click Edit > Edit form. Add Single Line text fields in your […]
Connect Mailchimp forms with Lead Source Tracking (cookie-based)
Add Google Analytics data to Mailchimp with GA Connector’s Mailchimp integration. Log into your account on Mailchimp account Click on “Lists”: Choose the list you need: Select “Signup forms”: Select “Form builder”: You will see the form builder interface: In this interface, you will need to add the following fields to your form: All Traffic Sources […]