Google Analytics

0 comments

 

How to grant another user access to your Google Analytics

http://www.google.com/support/analytics/bin/answer.py?hl=en_US&answer=55500&utm_id=ad

 

Async Google Analytics Tag

This is our standard format for GA tags. This makes the GA call asynchonous (in the background) without delaying the page loading. Previously the GA call was a blocking call - which is why you see it saying "contacting host googleanalytics..." in the status bar - it actually is delaying the page!

http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html

 

<script type="text/javascript"> 

  var _gaq = _gaq || []; 
  _gaq.push(['_setAccount', 'UA-XXXXX-X']); 
  _gaq.push(['_trackPageview']); 
 
  (function() { 
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); 
  })();  
</script>

 

Google Analytics CMS integration

Apparently mojoPortal has GA integration, which includes these good ideas:

- automatically labelling visitors as Members if they are logged in (presumably with a UserID as a GA custom variable)

- Site Search tracking - I didn't realise this was possible in GA, but it sounds like you would get analytics reports of what keywords people are searching for in your own site search - sounds like we could use this ourselves

See http://www.mojoportal.com/google-analytics-integration.aspx

SEO

Comments


Leave a Comment