Announcement

Collapse
No announcement yet.

Shopping.Com ROI code - what are the actinic variables?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Shopping.Com ROI code - what are the actinic variables?

    Here is the ROI code from shopping.com, to go in the receipt page -
    <script language="JavaScript">
    var merchant_id = 'xxxxx'
    var order_id = 'PUT_YOUR_DATA_HERE'
    var order_amt = 'PUT_YOUR_DATA_HERE'
    var category_id = 'PUT_YOUR_DATA_HERE'
    var category_name = 'PUT_YOUR_DATA_HERE'
    var product_id = 'PUT_YOUR_DATA_HERE'
    var product_name = 'PUT_YOUR_DATA_HERE'
    </script>
    <script language="JavaScript" src="https://stat.DealTime.com/ROI/ROI.js?mid=423594"></script>
    Anyone know what the actinic variables are for this?
    John

    #2
    Is this code meant to kick in after the order has been placed? In which case, you you need to place the code within your Act_Order04.html template. Within this template, Actinic is only going to supply values for these two:
    var order_id = 'PUT_YOUR_DATA_HERE'
    var order_amt = 'PUT_YOUR_DATA_HERE'
    The netquotevars will be:
    var order_id = 'NETQUOTEVAR:THEORDERNUMBER'
    var order_amt = 'NETQUOTEVAR:ACTINICORDERTOTAL'
    There are actually three or four different netquotevars available for the 'order_amt'. These are listed on p74 of the v7 Advanced Users Guide. You might want to find out which is the appropriate one for Shopping.com.

    Comment

    Working...
    X