> :) Well what are the odds on that! Someone else with the same problem
> and our GWO Hero Erik Volds has already posted an answer. Looks like
> its a missing <script> ... </script> around the conversioncount()
> function. If you don't hear back from me then that was the problem.
> On Dec 4, 6:19 pm, abj wrote:
> > I am trying to setup an 2-page A/B experiment where conversion should
> > be counted when the visitor clicks on a bunch of links. I've gotten
> > through setting up the onclick event and the experiment is live but I
> > am not seeing any conversions when I'm doing some test clicks. Used
> > different browsers, cleared cookies, etc and even got a couple of
> > friends to try it from their machines. I am seeing visits in the GWO
> > report but no conversions. Here's what all I've done:
> > 1. Control script before the <html> tag on the original page. I
> > swapped it to just after the <body> tag. But am guessing it makes no
> > difference.
> > 2. Original page tracking script just above the GA script which is
> > just above the </body> tag.
> > 3. Variation page tracking script also just above the GA script as
> > above.
> > 4. First part of conversion code after closing </html> tag on both
> > original and variation page as below:
> > <script>
> > if(typeof(urchinTracker)!='function')document.write('<sc'+'ript
> > src="'+
> > 'http'+(document.location.protocol=='https:'?'s://ssl':'://www')+
> > '.google-analytics.com/urchin.js'+'"></sc'+'ript>')
> > </script>
> > 5. Modified second part of conversion code with the conversion count
> > function just before the closing </head> tag on both original and
> > variation page as below:
> > <!--
> > function ConversionCount()
> > {
> > _uacct = 'UA-xxxx-4';
> > urchinTracker("/yyyy/goal");
> > return true;
> > }
> > // -->
> > 6. All the relevant links on the page with the onclick event as
> > below:
> > <a href="page.htm" onclick="return ConversionCount();">Page</a>
> > Where am I going wrong? Would appreciate any help. Thanks in
> > advance!
> > I would also like to second Erik Vold's feature request for a real
> > time conversion testing phase (http://erikvold.com/blog/index.cfm/
> > 2008/10/31/google-website-optimizer-feature-idea-testing-phase).
> > Having to wait 2-3 hours before you find that the conversions are not
> > getting counted really sucks!
> > -abey