So we have merchants that are on the comparison shopping engines, e.g. pricegrabber.com, shopzilla.com, and when a customer makes an order after through one of these sites it triggers a script that tracks the order. It looks like this:
<script language="javascript">
<!--
/* Performance Tracking Data */
var mid = 'x';
var cust_type = '';
var order_value = '';
var order_id = '';
var units_ordered = '';
//-->
</script>
<script language="javascript" src="https://www.shopzilla.com/css/roi_tracker.js"></script>
So the merchant fills in the variables, and it goes through to the engine which is tracked through a login.
What I want to do is figure out a way if we can consolidate these tracking pixels for 4-5 sites into one script, so that it's installed on the receipts page of our merchant, have the variables pass through our website which triggers the pixel to the engines.
Would this be possible since the tracker is triggered through a cookie as it passes through the website?
<script language="javascript">
<!--
/* Performance Tracking Data */
var mid = 'x';
var cust_type = '';
var order_value = '';
var order_id = '';
var units_ordered = '';
//-->
</script>
<script language="javascript" src="https://www.shopzilla.com/css/roi_tracker.js"></script>
So the merchant fills in the variables, and it goes through to the engine which is tracked through a login.
What I want to do is figure out a way if we can consolidate these tracking pixels for 4-5 sites into one script, so that it's installed on the receipts page of our merchant, have the variables pass through our website which triggers the pixel to the engines.
Would this be possible since the tracker is triggered through a cookie as it passes through the website?