4.
Integration with one shopping cart is easy because they allow you to have your own thank you code.
1. Edit Your Thank You Page
Open your "Thank You" page in a text editor like Notepad.
2. Add The Code To Your Thank You Page
Make sure you "Thank You" Page has the .php file extension and add the following code right before the </body> tag.
<<script>
function hideIF() {
document.getElementById('IF').style.display = 'none';
}
function getSaleInfo() {
document.getElementById('st_code').innerHTML='<iframe src="https://youraccount.ositracker.com/sales/salejs/amount:<?php echo $_POST['Total']; ?>/transaction:<?php echo $_POST['orderID']; ?>/Email:Add_Email" alt="" id=IF width=50 height=50 border="0" frameborder="0" onload="hideIF()">';
}
window.onload = getSaleInfo;
</script>
<div id="st_code"></div>