[Plugin: Google Analytics for WordPress] suggestion for new feature
-
Give the chance for better bounce report, as described in this post:
Google Analytics can report the real Bounce Rate
All Google Analytics accounts have access to event tracking by this time, so you can use the following hack in order to get real reports of bounce rate without skewing any of your data. Even more, the hack will help Google Analytics track better (not perfect though) the time spent on site by each visitor.
What you need to do is to fire up an event each time a user spends more than 10 seconds (or you can define your own standard) on the website. Just add the following line under the pageTracker._trackPageview(); line:
setTimeout(‘pageTracker._trackEvent(\’NoBounce\’, \’NoBounce\’, \’Over 10 seconds\’)’,10000);
10000 refers to the number of milliseconds after which you want to fire up the above code. If you want to do it after 15 seconds than you need to place there 15000.The hack will not alter your data in any way. It will just record in the Events section all the non-bouncers.
The New Bounce Ratega-bounce-rate
With the above hack Google Analytics shows you how many users leave your website without spending even 10 seconds on it and not clicking on any internal link. No interaction at all.
- The topic ‘[Plugin: Google Analytics for WordPress] suggestion for new feature’ is closed to new replies.