Created
March 30, 2017 11:05
-
-
Save benbowler/693f4ea13c86e993f675d88212af088d to your computer and use it in GitHub Desktop.
Cross domain tracking Google Analytics code for Thinkific in the multi-tenant tag format.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Ben's custom GA Code for Thinkific, please don't change! | |
Satisfies both of these criteria: | |
https://www.en.advertisercommunity.com/t5/Google-Analytics-Code/Help-with-multi-tenant-google-analytics-access/td-p/515546# | |
https://support.google.com/analytics/answer/1034342?hl=en | |
--> | |
<script> | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
var tcd = "thinkific.com"; | |
var tenantGoogleAnalyticsKey = "UA-00000000-2"; | |
if(tenantGoogleAnalyticsKey) { | |
var tenantCD = "seconddomain.example.com"; | |
ga('create', tenantGoogleAnalyticsKey, 'auto', { 'name': 'tenantTracker', 'cookieDomain': tenantCD, 'allowLinker': true }); | |
ga('require', 'linker'); | |
ga('linker:autoLink', ['www.example.com'] ); | |
ga('tenantTracker.send', 'pageview'); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment