May be you are in confusion regarding this;
The URLs for each step in my Defined Funnel Paths are identical. How can I track each step as if it were a unique URL?
You may love to track visitors' progress, through a funnel which has the same URL for each step.
You may love to track visitors' progress, through a funnel which has the same URL for each step.
Follow this simple example, your sign up funnel might look like this;
Step 1 (Sign Up) - www.yoursite.com/sign_up.cgi
Step 2 (Accept Agreement) - www.yoursite.com/sign_up.cgi
Step 3 (Finish) - www.yoursite.com/sign_up.cgi
To get around this, you can call the _trackPageview function within each step (probably within an onload event), as follows:
pageTracker._trackPageview ( " /funnel_G1/step1.html " )
pageTracker._trackPageview ( " /funnel_G1/step2.html " )
pageTracker._trackPageview ( " /funnel_G1/step3.html " )
Now, set up each step of your funnel to be:
http://www.yoursite.com/funnel_G1/step1.html
http://www.yoursite.com/funnel_G1/step2.html
http://www.yoursite.com/funnel_G1/step3.html
Please mention that the path/filename argument need not represent an existing path or filename. The argument to _trackPageview simply provides a made-up pagename to which Google Analytics can attach pageviews.
Important Note
1. Please ignore the spaces in codes.
2.Please note that your analytics tracking code and calls to _gat._getTracker must be placed on the page above the call to _trackPageview.
2.Please note that your analytics tracking code and calls to _gat._getTracker must be placed on the page above the call to _trackPageview.
< src=" https://www.google-analytics.com/ga.js " type= " text/javascript ">
< /script >
< type=" text/javascript ">
var pageTracker = _gat._getTracker (" UA-xxxxxx-x ") ;
pageTracker._trackPageview() ;
< /script >
To get confirm that _trackPageview is being called correctly, you can check your Top Content report 24-48 hours after the updated tracking code has been executed. You should be able to see the assigned PageName in your report.