views:

22

answers:

1

In a nutshell my split tests aren't tracking conversions at all.

My A/B pages are on http://www.mydomain.com, and my conversion page is the last stage of my shopping cart on https://secure.mydomain.com.

I thought the most concise way of explaining this would be to post my page source code:

http://pastebin.com/ru7dCDqD

To summarize, the pages are being displayed correctly in my test report, but no conversions are being tracked.

A: 

The problem may be occurring because your shopcart page is on a separate subdomain. Follow the GWO instructions for cross-domain tracking and see if this helps:

http://www.google.com/support/websiteoptimizer/bin/answer.py?hl=en&answer=151978

It may be as simple as adding this line of code to your conversion and tracking scripts:

gwoTracker._setDomainName(".mydomain");

Having the "." in there is important as it allows for all of the subdomains underneath your primary to be tracked, as well.