The following message appears when viewing a site page in the chrome debug log.
Uncaught ReferenceError: _gaq is not defined
The pag
Had the same problem. You have to define the _gaq array. Just add this after your Google Analytics script in the header:
_gaq
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXXX-X']); _gaq.push(['_trackPageview']);