Tracking code

For Advertisers, the Linkshop platform offers powerful yet easy to use realtime tracking technology for ecommerce and lead generation. Getting set up is a simple process for most ecommerce platforms.

Shopify
Tracking set up for Shopify websites can be done in two clicks our Shopify integration. Your account manager sends you a link that automatically connects your Shopify store with our tracking platform.

Other platforms

Other platforms, such as WooCommerce, Big Commerce, Magento and custom ecommerce sites, will require advertisers to add a small piece of code to their website for tracking conversions.


Our tracking can be easily set up with Google Tag Manager or directly on your website. Linkshop works just like Google Analytics with two parts.

  1. A site wide click tracking script to track affiliate clicks to your website.

  2. A script to track conversions on your order confirmation or thank you page.

Click tracking script

<script type="text/javascript" src="https://click.linktrack.co.nz/scripts/sdk/everflow.js"></script>
<script type="text/javascript">
EF.click({
offer_id: EF.urlParameter('oid'),
affiliate_id: EF.urlParameter('affid'),
sub1: EF.urlParameter('sub1'),
sub2: EF.urlParameter('sub2'),
sub3: EF.urlParameter('sub3'),
sub4: EF.urlParameter('sub4'),
sub5: EF.urlParameter('sub5'),
});
</script>

Conversion tracking script

Linkshop will supply your advertiser_id and you will need to insert the amount and order_id from your ecommerce platform. The example below is from BigCommerce.

<script type="text/javascript" src="https://click.linktrack.co.nz/scripts/sdk/everflow.js"></script>
<script type="text/javascript">
EF.conversion({
aid: ADVERTISER_ID,
amount: %%ORDER_SUBTOTAL%%, // commissionable amount of order, eg. 10.00
order_id: %%ORDERID%%, // order id, eg. 1234
coupon_code: '', // optional: insert any coupon used
adv1: "%%ORDER_EMAIL%%", // optional: include custom info in adv1-5 slots
});
</script>

For help please email michael@linkshop.co.nz