I have been asked to enter tracking codes onto my Actinic website - see below. Please can you give me a step by step work through of how and where to enter this. Many thanks
There are two stages to implement Google Analytics tracking. The first is to add the following piece of code to the website before the </head> tag on every page:
<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-45105825-1', 'easimat.com');
ga('send', 'pageview');
</script>
The second part is to set up the ecommerce tracking so shopping cart data is shared. I had a quick look through the Sellerdeck forums and didn’t really find anything on how to do this
There are two stages to implement Google Analytics tracking. The first is to add the following piece of code to the website before the </head> tag on every page:
<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-45105825-1', 'easimat.com');
ga('send', 'pageview');
</script>
The second part is to set up the ecommerce tracking so shopping cart data is shared. I had a quick look through the Sellerdeck forums and didn’t really find anything on how to do this
Comment