I'm trying to set 5 custom variables for Google Analytics like so:
<script>
//<![CDATA[
var _gaq=[["_setAccount","UA-XXXXXXXXX-X"],["_trackPageLoadTime"]];
_gaq.push(['_setCustomVar', 1, 'categories', 'News', 3]);
_gaq.push(['_setCustomVar', 2, 'tags', 'something, another, passbook, iphone, ipod, ios6, insider, egift, more things, some other stuff', 3]);
_gaq.push(['_setCustomVar', 3, 'productcount', 0, 3]);
_gaq.push(['_setCustomVar', 4, 'isvideo', 'false', 3]);
_gaq.push(['_trackPageview']);
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
//]]>
</script>
I think I've followed all the rules by adding no more than 5 custom vars before the call to trackPageView, but they still don't show up in Google Analytics.
_setCustomVaris correct in terms of parameters – Kristian Sep 19 '12 at 18:18'productcount'the CustomVar Value should be a string but it seems to be a number. Try:_gaq.push(['_setCustomVar', 3, 'productcount', '0', 3]);. But I'm not sure if it would break the other good CVs. – Eduardo Sep 19 '12 at 18:32