My site is: http://mark-friedman.com
As you probably know, Google is in the process of changing it's tracking process.
Currently, it's requesting I enter:
<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-43230184-1', 'auto');
ga('send', 'pageview');
</script>
on each page I want to track to get the full analytics.
You can see my google tracking id in the code above. Entering your ID without the rest significantly limits the data collection.
Let's assume I want this on every page on the site.
What's the best way to do this? Which template file (I'm using Kosel) would be most appropriate to generate the needed code?
Or should this go into custom.js?
Thanks