I have the following tracking script that is being executed but I dont see the custom variables in slot 2,3 and 4 show up on the Google analytics dashboard under Demographics -> Custom Variables. However I do see the custom variable for slot 1 appear on the dashboard.
Are there any restrictions when there are custom variables of different scopes in the same tracking script?
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount','UA-XXXXXXX-X']);
_gaq.push(['_setCookiePath','/shop']);
_gaq.push(['_setDomainName','.XXXXX.com']);
_gaq.push(['_setAllowLinker',true]);
_gaq.push(['_setAllowHash',false]);
_gaq.push(['_setCustomVar',1,'customerAccount','xxxxx',1]);
_gaq.push(['_setCustomVar',2,'SKU ID | SKU NAME','0116516 | X-9 COPY PAPER 8.5X11" RM WE',3]);
_gaq.push(['_setCustomVar',3,'CATEGORY ID','2 | 368 | 1602',3]);
_gaq.push(['_setCustomVar',4,'CATEGORY NAME','MULTI-USE COPY PAPER',3]);
_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>
I verified the script via Firebug in Firefox and do see the _utm.gif request fired and the utme param seems to have the custom variable values for all the slots.
Its been about 4 days since the tracking script was executed but still no values on the dashboard for custom variables 2,3,4. Any help will be appreciated as to why the page level custom variables don't show up.
Thanks!