Re: Gilligan's Google Analytics Module for 5/5.5 is now FREE at Miva Central
Ok, I figured out how to get my funnel's and goals to work. The problem I was having was that the session ID being passed in the URL did not include the page name "OCST" or "OPAY". What I had to do was to change the Google Analytics code to the code below:
Instead of using "OCST" for the funnel/goal tracking, I used "/funnel/cust_info" as seen above. Then in the funnel/goals section of Analytics, I put in the same "/funnel/cust_info" to track the page. Each page in the checkout process has a different analytics name, same code as above but the upsell page has "/funnel/upsell" in the code, OPAY page has /funnel/payment" etc... IN analytics, just put in to the URL section of the Goals the same /funnel/cust_info (whithout the quotes) to track.
I hope this info helps anyone else out there having difficulty getting the funnel/goals to track properly.
Ok, I figured out how to get my funnel's and goals to work. The problem I was having was that the session ID being passed in the URL did not include the page name "OCST" or "OPAY". What I had to do was to change the Google Analytics code to the code below:
Code:
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-6043910-2");
pageTracker._trackPageview("/funnel/cust_info");
} catch(err) {}</script>
I hope this info helps anyone else out there having difficulty getting the funnel/goals to track properly.
Comment