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]=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('create', 'UA-xxxxxxxx-x', 'auto');
  ga('create', 'UA-xxxxxxxx-x', 'auto', 'websiteTracker');
  ga('send', 'pageview');
ga('websiteTracker.send', 'pageview');
</script>

Comments

  1. I’m also familiarizing myself with the Google Analytics to track the traffic flow for my business website. The main source of traffic for our website is PPC advertisements, as it has proved to be very effective for my business. We’ve also hired a reputed Google Adwords Campaign Management agency for this purpose.

    ReplyDelete

Post a Comment

Popular posts from this blog

The Right Word for Right Lead

List of websites that can be useful for anyone