Cheap Car Insurance - Mortgage - Debt Consolidation - Mortgages - Mobile Phone

PDA

View Full Version : Google Analytics - Conversion Goals


atrain2442
Sep 11th 2007, 12:36 pm
I am trying to set up a conversion goal tracker at the "Thank You" screen just after a customer completes an order on our site. As it stands, Google asks that you submit the URL for said page so that it can monitor who makes it there with their cookie. However, our site has the customer's specific order number built into the URL, which means that every "Thank You" page is in essence unique and different from one another. How can I get around this and properly track my conversions?

NOTE: the same URL discrepency occurs durring the funneling process, but I'd imaging solving one would solve the other.

speda1
Sep 11th 2007, 1:06 pm
You place the conversion code in the Thank You page.

You don't need to submit the URL to Google.

atrain2442
Sep 11th 2007, 2:28 pm
Where do I obtain the unique code for a coversion? How will it differ from other conversion codes I have placed in different parts of my site; will/does Google know the difference when/if it reports to Analytics?

atrain2442
Sep 11th 2007, 2:38 pm
NM. The link below explains how to solve this problem as well as those associated with identical URLs over several steps in, say, a checkout process.


https://www.google.com/support/googleanalytics/bin/answer.py?answer=55514&hl=en_US

mudflation
Sep 11th 2007, 2:43 pm
you can use regular expressions

so if your thank you url with querys is: www.domain.com/thankyou.html?query=username123

then your goal should be:

/thankyou\.html.*?

or

/thankyou\.html.+?
if its not possible to not have a query
(the first one should work for either case)