Posts

Showing posts from September, 2017

Google Analytics: Multiple tracking codes on web pages

Looking to add a second Google Analytics tracking code to a page. Your first tracking code will be like: <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');   ga('send', 'pageview');  ga('create', 'UA-xxxxxxx-x', 'auto'); </script> The 2nd one would be a named tracker - ga('create', 'UA-12345678-6', 'auto'); ga('create', 'UA-123456-4', 'auto', 'myTracker'); ga('send', 'pageview'); ga('myTracker.send', 'pageview'); Final code will be <script>   (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=