Create a free website with Wix.com. Choose a stunning template and customize anything with the Wix website builder—no coding skills needed.
This integration describes how to integrate the Wix store. If you are using Ecwid or PayPal buttons within Wix please use the methods for those solutions.
Customize store thank you page
Log in to your Wix dashboard and edit your site. Once the Editor loads on the left side menu click the My Store button, then go to Store Pages and open the Thank You Page.
When the Thank You Page is loaded click Add button on the left side menu and under More select Embeds and from there add the HTML iframe element to your thank you page.
Now on the top bar of the editor find Dev Mode and click the button to Turn on Dev Mode. With the Dev Mode enabled click the Thank You Page Page Code bar which has appeared at the bottom of the screen.
Replace the code in this section with the one below where you need to replace the #thankYouPage1 and #html1 with the IDs of your own elements as shown on the below screenshot.
$w.onReady(function () {
$w('#thankYouPage1').getOrder()
.then((order) => {
$w('#html1').postMessage(order);
})
.catch((error) => {
});
});

Per order tracking code
Still on the thank you page editor enter the following code into the HTML element which you had added to your page:
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">
window.onmessage = (event) => {
if (event.data) {
var orderObject = event.data;
var totalCost = 0;
var productIds = [];
for (i = 0; i < orderObject.lineItems.length; i++) {
totalCost += orderObject.lineItems[i].totalPrice - orderObject.lineItems[i].discount;
if (orderObject.lineItems[i].taxIncludedInPrice === true) {
totalCost -= orderObject.lineItems[i].tax;
}
if (orderObject.lineItems[i].sku != undefined) {
productIds.push(orderObject.lineItems[i].sku);
} else {
productIds.push(orderObject.lineItems[i].productId);
} }
PostAffTracker.setAccountId('Account_ID'); var sale = PostAffTracker.createSale();
sale.setTotalCost(totalCost);
sale.setOrderID(orderObject.number);
sale.setCurrency(orderObject.currency);
sale.setProductID(productIds);
if (orderObject.discount !== undefined && orderObject.discount !== null && orderObject.discount.appliedCoupon !== undefined && orderObject.discount.appliedCoupon !== null) {
sale.setCoupon(orderObject.discount.appliedCoupon.code);
}
PostAffTracker.register();
}
}
</script>
If you wish to track the customer’s email address, phone or name you can use variables orderObject.buyerInfo.email, orderObject.buyerInfo.phone, orderObject.buyerInfo.firstName, orderObject.buyerInfo.lastName.
Have a look at Wix documentation to see an example of the whole orderObject.
Once you have the codes added Publish the page.
Per product tracking code
Still on the thank you page editor enter the following code into the HTML element which you had added to your page:
<script id="pap_x2s6df8d" src="https://URL_TO_PostAffiliatePro/scripts/trackjs.js" type="text/javascript"></script>
<script type="text/javascript">
window.onmessage = (event) => {
if (event.data) {
var orderObject = event.data;
PostAffTracker.setAccountId('Account_ID');
for (i = 0; i < orderObject.lineItems.length; i++) {
totalCost = orderObject.lineItems[i].totalPrice - orderObject.lineItems[i].discount;
if (orderObject.lineItems[i].taxIncludedInPrice === true) {
totalCost -= orderObject.lineItems[i].tax;
}
if (orderObject.lineItems[i].sku != undefined) {
productId = orderObject.lineItems[i].sku;
} else {
productId = orderObject.lineItems[i].productId;
}
var sale = PostAffTracker.createSale();
sale.setTotalCost(totalCost);
sale.setOrderID(orderObject.number + '(' + i + ')');
sale.setCurrency(orderObject.currency);
sale.setProductID(productId);
if (orderObject.discount !== undefined && orderObject.discount !== null && orderObject.discount.appliedCoupon !== undefined && orderObject.discount.appliedCoupon !== null) {
sale.setCoupon(orderObject.discount.appliedCoupon.code);
}
if (i < orderObject.lineItems.length -1) {
sale.doNotDeleteCookies();
}
}
PostAffTracker.register();
}
}
</script>
If you wish to track the customer’s email address, phone or name you can use variables orderObject.buyerInfo.email, orderObject.buyerInfo.phone, orderObject.buyerInfo.firstName, orderObject.buyerInfo.lastName.
Have a look at Wix documentation to see an example of the whole orderObject.
Once you have the codes added Publish the page.
Add the click tracking code
The last step is to add the click tracking code to all pages of your Wix website. To do that navigate to your Wix dashboard and then to Settings> Custom code.
On the screen which opens paste the code which you can get in your Post Affiliate Pro merchant panel under Tools> Integration> Clicks tracking and have it added to Body – end and loaded on All pages once.
Post Affiliate Pro (version 5.11.5.12 and 5.11.8.1) – June’s improvements and bug fixes
Post Affiliate Pro has released new updates including extra affiliate signup fields, improvements to performance rewards feature, added HTML formatting for banner description, updated integration plugins for Memberful, SamCart, ThriveCart, and Chargify platforms, a new trigger for Affiliate Sale tracking codes, the option to disable click fraud protection for selected affiliates, and new pagination for API grids. The Flash banners available have been removed due to Flash support in browsers ending over a year ago. Post Affiliate Pro supports several other types of banners. These updates aim to better protect businesses and manage affiliate programs efficiently.
iCarsU Affiliate Department Contact
Learn more about iCarsU Affiliates here. Visit the affiliate manager directory to get contact information, geographic focus, experience details and more.
The text discusses the process of adding tracking codes to an ecommerce platform called Zoey using PostAffiliate Pro. The article explains how to locate the Order Success page, add click tracking code, and decide on per order or per product tracking. It also provides the necessary code snippets for each tracking method. The integration with Zoey supports per product, coupon codes, and lifetime commissions tracking. The text encourages readers to create a free account and provides links to related resources.
i49 Affiliate Department Contact
Post Affiliate Pro is a software that offers affiliate management services, with a focus on the retail trade industry. The program has a global reach and uses Post Affiliate Pro for tracking affiliate activities. The i49 Affiliate Department Contact is an affiliate manager with expertise in Retail Trade and manages the i49 Affiliate Program. The website also offers a comprehensive list of affiliate contacts and can be reached via email, live chat or social media. A message containing login details will be sent upon completion of account installation. The website uses cookies, and a one-on-one call can be scheduled to discuss benefits the program can provide.