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 baseline implementation 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 layout example of synchronous monetate tag in \<head> of shopify theme liquid layout step 2 create a monetate liquid snippet navigate to the 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 connect shopify checkout extensibility to monetate 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 developer documentation for more information about its liquid template language 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 page retracks docid\ z7zs1bulqpt 0z1coyhww for instructions