I've got Google Analytics tracking on my site and I also track a funnel across a multi step form. The code is below:
<!-- google analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl."
: "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost +
"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1234567-2");
pageTracker._setDomainName('domain.co.uk');
pageTracker._trackPageview();
} catch(err) {}</script>
<!-- end google analytics -->
<!-- form tracking funnel -->
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1234567-2");
pageTracker._setDomainName('domain.co.uk');
pageTracker._trackPageview("/funnel/step1.html");
} catch(err) {}</script>
<!-- end form tracking funnel -->
I'm looking to add a custom variable but want to be sure I put it in the right place so I don't end up tracking page views more than once!
The custom variable I want to add is
pageTracker._setCustomVar(3, 'appId', '1722891');
The third parameter is dynamic. Shall I add this to the top google analytics code or to the bottom code? I wasn't sure if it would conflict with the funnel or not?!