Skip to main content
All CollectionsNPS
NPS Implementation - Add Omniconvert Explore to your website (non-Shopify)
NPS Implementation - Add Omniconvert Explore to your website (non-Shopify)
Costin Floricel avatar
Written by Costin Floricel
Updated over a year ago

In this part you will find out how to add Explore to Shopify in manner that will enable Explore to register the purchases that are made by the customers in a Shopify store.

1. General tracking code

Get the general Tracking Code from the Omniconvert Explore Dashboard, by clicking on your website’s name in the top menu, and selecting “Tracking code settings”:

Click on Copy Code button and paste the code to the beginning of the <head> section in your website’s code. Please make sure this code is available on all pages of your website.

2. Conversion tracking code on the “Thank you” page

For the next step, edit the code for your “Thank you” page and paste the following code into your page, by editing the 3 placeholders:

<script>
var mktzCustom = {
'orderId': '{{ order_id }}'
};

var _mktz = _mktz || [];
_mktz.push(['_Goal','sale','{{ total_price }}', {transaction:'{{ transaction_id }}'}]);
</script>

Placeholders:

{{ order_id }} – The unique identifier of the order that has been placed.
{{ total_price }} – The total price of the current order, without any currency in it.
{{ transaction_id }} – The identifier of the current transaction.

Did this answer your question?