Announcement

Collapse
No announcement yet.

Become.co.uk Tracking

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

    Become.co.uk Tracking

    Hi All,

    We recently opened an account with Become.co.uk a shopping comparison site that is getting us a good amount of traffic. Unfortunately I can’t seem to get their tracking implemented properly.

    I added the code bellow on our receipt page and carried out a transaction. The variables highlighted in red do not seem to be working. As such, I was wondering if anyone has had any similar trouble, and if so how did you get the tracking live? And/Or if anyone can help me find the right variables to get this working??

    Any assistance would be much appreciated.

    Thanks,
    Liam


    <!-- BEGIN Become UK Tracking HTML -->

    <script type="text/javascript">

    var become_merchant_id = 'ENTERHERE';
    var become_order_num = 'LM11UJ10004909';
    var become_purchased_items = new Array();
    // adding cart items FOR EACH PURCHASED ITEM...
    // add cart item
    var become_item = new Object();
    become_item.productid = 'NETQUOTEVAR:PRODUCTREFERENCE';
    become_item.category = 'CATEGORY';
    become_item.price = 'NETQUOTEVAR:PRICE';
    become_item.quantity = 'NETQUOTEVAR:PRODUCTQUANTITY';
    become_purchased_items.push(become_item);
    //NEXT PURCHASED ITEM
    //become_item = new Object();
    //become_item.productid = 'NETQUOTEVAR:PRODUCTREFERENCE';
    //become_item.category ='CATEGORY';
    //become_item.price = 'NETQUOTEVAR:PRICE';
    //become_item.quantity = 'NETQUOTEVAR:PRODUCTQUANTITY';
    //become_purchased_items.push(become_item);

    </script> <script type="text/javascript" language="javascript" src="https://partner.become.co.uk/roi-tracker2/conversion.js"></script>

    <noscript><img src="https://partner.become.co.uk/roi-tracker2/t.gif?merchantid=enterhere&order_id=LM11UJ10004909&order_value=3%2e40" style="display:none;border:0;"/></noscript>

    #2
    We're having exactly the same problems - but with a different affiliate.

    I've searched the board, but can't seem to find anything other than
    <actinic:variable name="TheOrderNumber" />
    and
    <actinic:variable name="ActinicOrderTotal" /> (although I haven't tested this one yet!)

    If anyone could help that would be great. Can it even be done?

    Comment

    Working...
    X