Hi - since going live with a site upgraded from v7 to V8, google analytics is no longer tracking ecommerce sales. The code I have in both is the same.
The code in the head is:
and before the body closing tag:
I assume that this is because Actinic no longer uses NETQUOTEVARS. If so, is there are list of parameters that I can replace the NETQUOTEVARS with? I assume I can just drop in things like <actinic:variable name="Total"/> to replace NETQUOTEVAR:NUMERICORDERTOTALCGI.
I have not yet checked but this may also be affecting my Affiliate Windows code:
The code in the head is:
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-xxxxx-1";
urchinTracker('receipt.html');
</script>
</script>
<script type="text/javascript">
_uacct = "UA-xxxxx-1";
urchinTracker('receipt.html');
</script>
<form style="display:none" name="utmform">
<textarea id="utmtrans"></textarea>
</form>
<script language="JavaScript" type="text/javascript">
<!--
var realprice = NETQUOTEVAR:ACTINICORDERTOTAL / 100;
var line1 = 'UTM:T|NETQUOTEVAR:THEORDERNUMBER|affiliation|' + realprice + '|tax|shipping|city|state|NETQUOTEVAR:INVOICECOUNTRY';
var line2 = 'UTM:I|NETQUOTEVAR:THEORDERNUMBER|NETQUOTEVAR:PRODUCTREFERENCE|NETQUOTEVAR:PRODUCTNAME|category|price|quantity';
document.getElementById('utmtrans').value = line1 + '
' + line2;
//-->
</script>
<textarea id="utmtrans"></textarea>
</form>
<script language="JavaScript" type="text/javascript">
<!--
var realprice = NETQUOTEVAR:ACTINICORDERTOTAL / 100;
var line1 = 'UTM:T|NETQUOTEVAR:THEORDERNUMBER|affiliation|' + realprice + '|tax|shipping|city|state|NETQUOTEVAR:INVOICECOUNTRY';
var line2 = 'UTM:I|NETQUOTEVAR:THEORDERNUMBER|NETQUOTEVAR:PRODUCTREFERENCE|NETQUOTEVAR:PRODUCTNAME|category|price|quantity';
document.getElementById('utmtrans').value = line1 + '
' + line2;
//-->
</script>
I have not yet checked but this may also be affecting my Affiliate Windows code:
<img src="http://www.awin1.com/sale.php?sale=NETQUOTEVAR:NUMERICORDERTOTALCGI&extra=NETQUOTEVAR:THEORDERNUMBER&type=s&mid=xxx">
Comment