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.
Category: Lead Source Tracking (cookie-based)
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.
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 […]
GA Connector Field Codes
This table shows the ID that each GA Connector field should have:
How to add the whole referral URLs to the “pages visited” field
Some customers prefer to see the full referral URLs in the “pages visited” field (not just the path). For that reason, we created a slightly updated version of GA Connector tracking code that does just that:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<script data-cfasync="false" type="text/javascript" src="https://tracker.gaconnector.com/gaconnector.js"></script> <script> function addFullPathToPagesVisited(gaFields) { var prefix = window.location.protocol + "://" + window.location.host; var pagesVisitedList = gaFields['pages_visited_list']; pagesVisitedList = pagesVisitedList.replace(/\|/g, "|"+prefix); pagesVisitedList = prefix + pagesVisitedList; gaFields['pages_visited_list'] = pagesVisitedList; return gaFields; } function setGaconnectorHiddenFields() { var gaFields = gaconnector.getCookieValues(); gaFields = addFullPathToPagesVisited(gaFields); 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(); var inputs = document.querySelector(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 a Zoho CRM report with Google Analytics data
Now that you’ve added GA data to your Zoho 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 though the process of creating such […]