Did anyone ever figure out how to implement the tradedoubler tracking system?
ive read through all the posts i can find but it is baffling us. We have been given some javascript which we dont know what to do with and i see that someone has posted a V.7 OrderScript.pl file.
We currently still use version 7 but we have no idea what to do with it. anyone have step by step instructions for the implementation process?
Here is the javascript we have been given
	
							
						
					ive read through all the posts i can find but it is baffling us. We have been given some javascript which we dont know what to do with and i see that someone has posted a V.7 OrderScript.pl file.
We currently still use version 7 but we have no idea what to do with it. anyone have step by step instructions for the implementation process?
Here is the javascript we have been given
Code:
	
	<script language="javascript" type="text/javascript">
<!-- Begin TradeDoubler tag-->
var  product_number = "";  //product reference
var  product_name = ""; // product name
var  price = ""; //product price
var  quantity = ""; // quantity
var reportInfo = "";
reportInfo = "f1="+product_number+"f2="+product_name+"f3="+price+"f4="+quantity;
reportInfo = escape(reportInfo);
var orderNr = ""; 
var orderValue = "";
var uri  = "http://tbs.tradedoubler.com/report?organization=10xxx34&event=6xxx6&orderValue="+ orderValue +"curency=GBP&orderNumber="+ orderNr +"&reportInfo="+ reportInfo;  
 
document.write("<img src=\""+uri+"\" height=\"1\" width=\"1\" border=\"0\">"); 
<!-- End TradeDoubler tag-->
</script>

Comment