If I'm using this tracking pixel on the thank you page after customers check out, I was wondering if I could change the output completely.
This is the pixel on the page before a checkout.
<img src="
https://www.site.com/u?CID=1521148&TYPE ... TEM1=<?php echo $product_id;?>&AMT1=<?=$_SESSION[tracker_order_amt]?>&QTY1=<?php echo $product_qty; ?>&DISCOUNT=0" height="1" width="20">
After a checkout has been completed, it's something like this:
<img src="
https://www.site.com/u?CID=1521148&TYPE ... 4&ITEM1=15, 24, 36&AMT1=336.00&QTY1=4, 1 , 3&DISCOUNT=0" height="1" width="20">
Below is the output that I'd Ideally want.
&ITEM1=15
&AMT1=112.00
&QTY1=4
&ITEM2=24
&AMT2=112.00
&QTY2=1
&ITEM3=36
&AMT3=112.00
&QTY3=3
Any help would be greatly appreciated.