Wordpress And Google Analytics Events
I want to track some actions in Google Analytics but I can't get it working. I tried it with Contact Forms (Wordpress). At the additional settings I just wrote: on_sent_ok: 'ga('se
Solution 1:
You need to make sure that you initialize the tracker object before you call the ga()
method. You do this by placing this code at the top of the source code of your page (right after the <body>
element:
<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*newDate();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXXXXX-Y', 'auto');
</script>
Make sure to replace the UA-XXXXXXX-Y with your own property ID.
Post a Comment for "Wordpress And Google Analytics Events"