Since I cannot set multiple values for the same slot at the same time, using code like this
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XXXXXXXX']);
_gaq.push(['_setDomainName', 'mydomain.com']);
_gaq.push(['_setCustomVar',1,'ONE',"www.mydomain.com/ONE",1]);
_gaq.push(['_setCustomVar',1,'TWO',"www.mydomain.com/ONE",1]);
_gaq.push(['_setCustomVar',2,'THREE',"www.mydomain.com/ONE",1]);
_gaq.push(['_setCustomVar',2,'FOUR',"www.mydomain.com/ONE",1]);
_gaq.push(['_trackPageview']);
Is there another strategy to get the same results?
source
share