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 […]
Category: Lead Source Tracking (cookie-based)
How to push GA Connector data to Intercom
To push GA Connector data to Intercom, all you need to do is to add this line of JavaScript code to GA Connector tracking code:
1 |
Intercom('update', gaFields); |
You need to add it right after “var gaFields = gaconnector.getCookieValues();” like shown below:
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 |
<script type="text/javascript" src="https://tracker.gaconnector.com/gaconnector.js"></script> <script> function setGaconnectorHiddenFields() { var gaFields = gaconnector.getCookieValues(); Intercom('update', 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() + ', input[value="gaconnector_' + fieldName +'"]'; var inputs = document.querySelector(selectors); if (inputs === null) { continue; } else if (typeof inputs.length === 'undefined') { inputs.value = gaFields[fieldName]; jQuery(document).ready(function() { jQuery(inputs).trigger('change'); }); } else { for (var i = 0; i < inputs.length; i++) { inputs[i].value = gaFields[fieldName]; jQuery(document).ready(function() { jQuery(inputs).trigger('change'); }); } } } } setGaconnectorHiddenFields(); gaconnector.setCallback(setGaconnectorHiddenFields); setInterval(setGaconnectorHiddenFields, 1000); </script> |
As a result, you’ll see GA Connector data in the right section 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.
Description of parameters tracked by our Visitor Tracking Service
GA Connector tracks the following information about the users: Traffic source parameters Source: Every referral to a website has an origin, or source. Possible sources include: “google” (the name of a search engine), “facebook.com” (the name of a referring site), “spring_newsletter” (the name of one of your newsletters), and “direct” (users that typed your URL directly into […]
What to do if Zoho CRM extension can’t be installed?
You may see an error during the installation of the extension: Or other times, you may just see a blank screen like this: Zoho CRM Extension installation error #2 (blank screen) In other experience, there are two reasons why this could happen: 1. You’re using Zoho CRM Free edition. How to check your Zoho CRM […]
Customize Lead Page Layout in SalesForce
If you have installed the GA Connector Fields in your SalesForce, you will not yet see the fields details on your Leadsf until you customize the Lead Page Layout.
Documentation for Zoho CRM Extension for the Basic Integration
We have developed a Zoho CRM extension to speed up the creation of fields that will hold analytics data about your users. You can install it here. During the installation, please select the correct permissions depending on who you want to see the fields (everyone, admin or certain profiles only). Otherwise, you would need to re-install […]