Ich bin mit dem Vanille-ga asynchronen Code thusly, kurz vor Ende des </head>
:Muss ich _gaq.push (['_ trackPageView']) mehr als einmal auf einer Seite aufrufen, wenn Sie den asynchronen Code von goog analytics verwenden?
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxx-1']);
_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>
</head>
jetzt, später in der Mitte der Seite i nennen:
<script>
_gaq.push(['_setCustomVar',
1,
'usertype',
'anon',
2
]);
</script>
die Frage ist, habe ich müssen Sie noch einmal zu _trackPageView anrufen?
das heißt, sollte ich hinzufügen, eine andere
_gaq.push(['_trackPageview']);
...?
danke Buntstift gewalttätig, perfekte Antwort! – duggi