Reputation: 523
I have just implemented the new Universal Analytics code but from the data it seems like the script has generated two pageviews at the same time. It is also what I've saw on the Realtime reporting. Then when I check the network with Chrome, I can clearly see two collect requests. Looking at the code, there are two <script async="" src="//www.google-analytics.com/analytics.js"></script>
generated.
What would be the case? Thank you.
Upvotes: 0
Views: 290
Reputation: 9603
It looks like the <head>
of your document is on there twice, hence why you're seeing double pageviews. Take a look at your source and do a search for google-analytics
.
Upvotes: 2