Hi
I emailed Google help and they suggested I follow this:
So I have added the modified tracker code to the templates originally mentioned and modified the act_OCCNochexTemplate.html to look like
Does not appear to have broken anything in respect of being able to buy from the site, but only 24 hours will tell if this solves the problem!
Pete
I emailed Google help and they suggested I follow this:
If your website initiates a purchase checkout process on a separate store site
(for example, if you send customers from www.mystore.co.uk to www.securecart.co.uk):
1. Add the following lines (in bold) to your tracking code on both your store site and your shopping cart pages:
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct="UA-xxxx-x";
_udn="none";
_ulink=1;
urchinTracker();
</script>
2. If you send information to your shopping cart using forms, use the __utmLinkPost() function. It appends cookie data to the provided URL of the supplied form.
<form action="http://newdomain.com/form.cgi" onSubmit="javascript:__utmLinkPost(this)">
(for example, if you send customers from www.mystore.co.uk to www.securecart.co.uk):
1. Add the following lines (in bold) to your tracking code on both your store site and your shopping cart pages:
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct="UA-xxxx-x";
_udn="none";
_ulink=1;
urchinTracker();
</script>
2. If you send information to your shopping cart using forms, use the __utmLinkPost() function. It appends cookie data to the provided URL of the supplied form.
<form action="http://newdomain.com/form.cgi" onSubmit="javascript:__utmLinkPost(this)">
Code:
<FORM NAME="formOCC" METHOD="post" ACTION="NETQUOTEVAR:OCC_URL" onSubmit="javascript:__utmLinkPost(this)"> NETQUOTEVAR:OCC_VALUES <P> <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="600"> <TR> <TD ALIGN="right"> <INPUT TYPE="submit" NAME='\"SUBMIT\"' VALUE="Next>"> </TD> </TR> </TABLE> </FORM> <FORM METHOD="post" ACTION="NETQUOTEVAR:OCC_URL">
Pete
Comment