Skip to content

Instantly share code, notes, and snippets.

@mattlebel
mattlebel / shopify-order-confirmation-script-gate.html
Created March 15, 2023 14:48
Behind The Checkout - Example of email-based Shopify Order Confirmation gating
{% if first_time_accessed or email == 'james@yourdomain.com' %}
<!--
Put the liquid tags that you want to verify in a div with a unique ID and display:none CSS rule
-->
<div id="search-for-me" style="display:none;">
{{ order_number }}
{{ total_price | money_without_currency }}
</div>
@mattlebel
mattlebel / shopify-first-visit-script-example.html
Created July 6, 2020 04:40
Behind The Checkout - Only fire conversion scripts / pixels on first visit to the Order Status page
{% if first_time_accessed %}
<!-- Scripts you only want to run on first checkout confirmation -->
<!-- An example tracking pixel - be sure to remove this when copying this example -->
<img src="https://www.tracking.com/pixel.gif?amount={{ total_price | money_without_currency }}&amp;order-id={{ order_number }}&amp;currency={{ currency }}" height="1" width="1" />
{% else %}
<!-- Scripts you want to run on every visit to confirmation page -->
<!-- (like when a customer clicks the "View Order Status" button in their confirmation email) -->
@mattlebel
mattlebel / verifying-order-confirmation-liquid-tags.html
Created July 6, 2020 04:06
Behind The Checkout - Verifying Liquid tags on the Shopify Order Confirmation page (using an existing customer order)
{% if first_time_accessed %}
<!-- Scripts you only want to run on first checkout confirmation -->
<!-- The tracking pixel that we want to verify is outputting the correct information -->
<img src="https://www.tracking.com/pixel.gif?amount={{ total_price | money_without_currency }}&amp;order-id={{ order_number }}&amp;currency={{ currency }}" height="1" width="1" />
{% else %}
<!-- Scripts you want to run on every visit to confirmation page -->
@mattlebel
mattlebel / ga-shopify-referral-exclusions.txt
Created July 15, 2019 14:12
[JULY 2019] An up-to-date referral exclusions list for Google Analytics and Shopify
checkout.shopify.com
pay.shopify.com
amazon.com
PayPal.com
pay.google.com
Yourdomain.com
Yourdomain.myshopify.com