We are having a lot of trouble getting clixgalore's tracking code to work in our receipt page. By default it is outputting a value such as £23.11 as 2311 so we added /100 to round it down but that didn't work. This is what we embedded:
<script language="javascript">
var SV = <Actinic:Variable Name="SubTotal"/>/100;
var OID = '<Actinic:Variable Name="TheOrderNumber"/>';
document.write ('<img
src="https://www.clixGalore.com/AdvTransaction.aspx?AdID=7500&SV=' + SV +
'&OID=' + OID + '" height="0" width="0" border="0">');
</script>
How does that compare to what other cg users have got ?
<script language="javascript">
var SV = <Actinic:Variable Name="SubTotal"/>/100;
var OID = '<Actinic:Variable Name="TheOrderNumber"/>';
document.write ('<img
src="https://www.clixGalore.com/AdvTransaction.aspx?AdID=7500&SV=' + SV +
'&OID=' + OID + '" height="0" width="0" border="0">');
</script>
How does that compare to what other cg users have got ?
Comment