I use vbSEO and it has this functionality built in.
If you don't use vbSEO, I would imagine it's pretty straight forward to edit register.php and whatever file comes last to confirm the registration and include code to help Google track the funnel. Here's their instructions on the process:
Quote:
You may wish to track visitors' progress through a funnel which has the same URL for each step. For example, your sign up funnel might look like this:
* Step 1 (Sign Up) - www.mysite.com/sign_up.cgi
* Step 2 (Accept Agreement) - www.mysite.com/sign_up.cgi
* Step 3 (Finish) - www.mysite.com/sign_up.cgi
To get around this, you can call the urchinTracker Javascript function within each step (probably within an onload event), as follows:
urchinTracker("/funnel_G1/step1.html")
urchinTracker("/funnel_G1/step2.html")
urchinTracker("/funnel_G1/step3.html")
Then, set up each step of your funnel to be:
http://www.mysite.com/funnel_G1/step1.html
http://www.mysite.com/funnel_G1/step2.html
http://www.mysite.com/funnel_G1/step3.html
Note that the path/filename argument to urchinTracker() need not represent an existing path or filename. The argument to urchinTracker simply provides a made-up pagename to which Google Analytics can attach pageviews.
Important: if your pages include a call to urchinTracker(), utmLinker(), utmSetTrans(), or utmLinkPost(), your Analytics tracking code must be placed in your HTML code above any of these calls. In these cases the tracking code can be placed anywhere between the opening <body> tag and the JavaScript call.
|
If your urchintracker is in the headinclude, you may even be able to add those urchin steps to the phrases.
Let me know what you find!
UPDATE
It looks like there's already a
plugin to do this.