Custom Tracking

If you wish to store the final amount of a sale, you can set it when calling the intellichat tracking pixel to review saled sale amounts within your control panel.

Sale Price

If you are looking to get more information about saved sales on intellichat, you can set the final sale amount of a tracked sale within intellichat. By setting this value, you are able to track back each sale to a chat and also how much revenue was saved. We also display the total revenue saved per date range through the contro panel.

 

You can set the amount by just adding '&amount=xxx.xx' onto the end of your tracking code (see below).

<script type="text/javascript" src="https://www.intellichat.com/tracking/sale.php?setCookie&cid=CAMPAIGN_ID&amount=xxx.xx"></script>

 

If you only have the sale amount available in JavaScript, you can include our tracking pixel, as follows, and just change 'JAVASCRIPT_SALE_VARIABLE' to the JavaScript variable name for the sale amount.

<script type="text/javascript">
document.write('<script type="text\/javascript" src=https://www.intellichat.com/tracking/sale.php?setCookie&cid=CAMPAIGN_ID&amount=');
document.write(JAVASCRIPT_SALE_VARIABLE);
document.write('><\/script>');
</script>

 

 

Multiple Campaign Tracking

If you have multiple campaigns on one website that all complete on the same thank you page, you can now include one tracking pixel and simply comma separate all of your campaign IDs.

<script type="text/javascript" src="https://www.intellichat.com/tracking/sale.php?setCookie&cid=CAMPAIGN_ID,CAMPAIGN_ID2,CAMPAIGN_ID3&amount=xxx.xx"></script>