Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?!

share|improve this question
Anyone know?! I added it within the second one yesterday and it seems to have tracked 12 times which is odd considering we get thousands of visits – user1961082 Feb 21 at 9:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.