Hi,
I have actinic site http://www.girlsofelegance.co.uk
I have signed up with saletrack.co.uk, a company that tracks sales ...
They need to grab the cart value, cart items, and order number from the completed check out page, but I need to add the tracking code with the option to get these values.
This is there technical help -
data = 'cid=254864&cs=[total]&it=[itemcount]&oi=[orderinfo]';
.
Substitute [total] for the total amount on this order.
Substitute [itemcount] for the amount of items bought. This field is optional, you may omit it, or set to 1.
Substitute [orderinfo] for the order reference or any additional info (up to 255 characters). This field is optional, you may omit it or set to blank.
If your commerce system is written in ASP, the line would look similar to this: (where rsOrder is an ASP recordset)
data='cid=254864&cs=<%=rsOrder("TotalSpend")%>&it=<%=rsOrder("ItemCount")%>&oi=<%=rsOrder("OrderRef")%>';
If your commerce system is written in PHP, the line would look similar to this:
data='cid=254864&cs=<?php echo $OrderTotal;?>&it=<?php echo $ItemCount;?>&oi=<?php echo OrderRef;?>';
Has anyone done this and know the correct code from the above for actinic?
Best Regards,
Austin Harvey
I have actinic site http://www.girlsofelegance.co.uk
I have signed up with saletrack.co.uk, a company that tracks sales ...
They need to grab the cart value, cart items, and order number from the completed check out page, but I need to add the tracking code with the option to get these values.
This is there technical help -
data = 'cid=254864&cs=[total]&it=[itemcount]&oi=[orderinfo]';
.
Substitute [total] for the total amount on this order.
Substitute [itemcount] for the amount of items bought. This field is optional, you may omit it, or set to 1.
Substitute [orderinfo] for the order reference or any additional info (up to 255 characters). This field is optional, you may omit it or set to blank.
If your commerce system is written in ASP, the line would look similar to this: (where rsOrder is an ASP recordset)
data='cid=254864&cs=<%=rsOrder("TotalSpend")%>&it=<%=rsOrder("ItemCount")%>&oi=<%=rsOrder("OrderRef")%>';
If your commerce system is written in PHP, the line would look similar to this:
data='cid=254864&cs=<?php echo $OrderTotal;?>&it=<?php echo $ItemCount;?>&oi=<?php echo OrderRef;?>';
Has anyone done this and know the correct code from the above for actinic?
Best Regards,
Austin Harvey
Comment