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 […]
Category: Lead Source Tracking (cookie-based)
Connect Mailchimp forms with Lead Source Tracking (cookie-based)
The instructions below apply to Cookie-Based integration. If you are using API-Based integration, please note that Mailchimp forms does not support it. You will need to follow the Cookie-Based integration steps instead. Not sure which instructions to follow? Start here: How to Check Which GA Connector Integration Type You’re Using. Add Google Analytics data to Mailchimp with GA Connector’s […]
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 […]
How to push GA Connector data to Intercom
The instructions below apply to Cookie-Based integration. If you are using API-Based integration, you will need to follow the Cookie-Based integration steps instead. Not sure which instructions to follow? Start here: How to Check Which GA Connector Integration Type You’re Using. To push GA Connector data to Intercom, all you need to do is to add this line of […]
How to push GA Connector info to data layer in Google Tag Manager
To push GA Connector info to GTM data layer, use the following JavaScript code:
1 2 |
var gaconnectorInfo = gaconnector.getCookieValues(); dataLayer.push( gaconnectorInfo ); |
To make sure that GA Connector is fired by the time this script is run, use the tag sequencing functionality provided by Google Tag Manager: Tag sequencing It allows to set the script from the article to fire after GA Connector.
List of GA Connector data points
This table shows all the data points currently tracked by GA Connector:
How to connect GA Connector with Zoho CRM add-on for Gravity Forms
First, make sure that you’ve installed GA Connector WordPress plugin and Zoho CRM extension Also, make sure you followed this tutorial first and created the necessary hidden fields in Gravity Forms. Open your WordPress admin – Forms – Settings – Zoho CRM Click on “Clear Custom Field Cache” This will download new Zoho CRM fields […]
How to clean cookies for your website only
First, open your website in Google Chrome Right-click anywhere on the page and then click on “Inspect” Select “Application” in the menu Find your domain below the “Cookies” menu, and then right-click on it and press “Clear” That’s it! Now your website cookies have been cleaned for your browser.