Created
March 15, 2023 14:48
-
-
Save mattlebel/3f4cfedb55628fd96776f9115be4df14 to your computer and use it in GitHub Desktop.
Behind The Checkout - Example of email-based Shopify Order Confirmation gating
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if first_time_accessed or email == '[email protected]' %} | |
<!-- | |
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> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment