Integrate with Shopify
if you're also a shopify client, you can implement monetate on your shopify site this implementation currently doesn't include tracking conversions on the order confirmation page step 1 add the monetate tag to theme liquid follow the steps in docid\ zcx p3d6nd2rr5bjloyug to obtain and then paste the version of the monetate tag that you're using as the first script tag in the \<head> element of your shopify theme liquid https //shopify dev/docs/storefronts/themes/architecture/layouts example of synchronous monetate tag in \<head> of shopify theme liquid layout step 2 create a monetate liquid snippet navigate to the https //shopify dev/docs/storefronts/themes/architecture#snippets directory, click add a new snippet , name it monetate liquid , and then paste the following code into it this code sends all the necessary method calls depending on page type, except for checkout and purchase page types follow the steps in docid\ cdumllk01fdom8ywrv54y to create a custom pixel to pass checkout and purchase data to monetate code for monetate liquid snippet {% if template name == 'search' %} {% endif %} {% if template name == 'collection' %} {% elsif template name == 'product' %} {% elsif template name == 'search' %} {% elsif template name == 'home' %} {% else %} {% endif %} step 3 add the snippet to theme liquid insert the following code before the \</body> tag of theme liquid to render the monetate liquid snippet example of setpagetype method added to shopify collection template liquid {% render 'monetate' %} see shopify's https //shopify dev/docs for more information about its https //shopify dev/docs/api/liquid step 4 implement retracks any time a customer makes changes to a page of your site while shopping (for example, applying filters to search results), you must perform a retrack to make monetate aware of the new data present these retracks enable personalized experiences implementing retracks is straightforward refer to docid\ z7zs1bulqpt 0z1coyhww for instructions