Multiple values for a specif custom variable in Google Analytics
- by Nicola Pacini
we're trying to get rid of a this question : would it be possible to setup more than one value in a custom variable in Google Analytics, at page level ?
Eg:
_gaq.push(['_setCustomVar',3,'Tag','Custom Variables',3]);
We'd like to track most popular tags on a web site who publishes news, articles and stuff. Contents are categorized (each content belongs to one category) and tagged (1 or more tags for each article).
So, we'd like to apply this code:
_gaq.push(['_setCustomVar',3,'Tag','Custom Variables',3]);
_gaq.push(['_setCustomVar',3,'Tag','Google Analytics',3]);
in a page that shows an article with these two tags assigned.
What do you think? Honestly I didn't find anything in documentation from Google and some other example sites.
Many thanks!
Nicola