This file contains 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
{% capture email_title %}Thank you for your purchase! {% endcapture %} | |
{% capture email_body %} | |
<p>Include an intro message here for your customers.</p> | |
{% endcapture %} | |
{% capture email_footer %} | |
<h4 style="margin-top:20px;">File Downloads</h4> | |
<p>Please find your file downloads below:</p> | |
{% for line in line_items %} | |
{% for tag in line.product.tags %} | |
{% if tag == 'tag1' %} |
This file contains 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
<h4 style="margin-top:20px;">File Downloads</h4> | |
<p>Please find your file downloads below:</p> | |
{% for line in line_items %} | |
{% for tag in line.product.tags %} | |
{% if tag == 'tag1' %} | |
<p>Access Image 1 here: <a href="https://DownloadLinkFromAWS.png">Image 1</a></p> | |
{% elsif tag == 'tag2' %} | |
<p>Access Image 2 here: <a href="https://DownloadLinkFromAWS.png">Image 2</a></p> | |
{% elsif tag == 'tag3' %} | |
<p>Access Image 3 here: <a href="https://DownloadLinkFromAWS.png">Image 3</a></p> |
This file contains 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
<script> | |
Shopify.Checkout.OrderStatus.addContentBox( | |
'<h2>File Download</h2>', | |
'<p>Please find your file downloads below. You will also recieve these links in your order confirmation email.</p>', | |
{% for line in checkout.line_items %} | |
{% for tag in line.product.tags %} | |
{% if tag == 'tag1' %} | |
'<p>Access Image 1 here: <a href="https://DownloadLinkFromAWS.png">Image 1</a></p>', | |
{% elsif tag == 'tag2' %} | |
'<p>Access Image 2 here: <a href="https://DownloadLinkFromAWS.png">Image 2</a></p>', |
This file contains 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
<div itemscope itemtype="http://schema.org/Product" id="ProductSection" data-section-id="{{ section.id }}" data-section-type="product-template" data-image-zoom-type="{{ section.settings.product_image_zoom_type }}" data-show-extra-tab="{{ section.settings.show_extra_tab }}" data-extra-tab-content="{{ section.settings.extra_tab_content }}" data-enable-history-state="true"> | |
{% case section.settings.add_to_cart_width %} | |
{% when 'small' %} | |
{%- assign btn_class = 'btn--wide' -%} | |
{%- assign productform_class = 'product-form--wide' -%} | |
{% when 'medium' %} | |
{%- assign btn_class = 'btn--wide' -%} | |
{%- assign productform_class = 'product-form--wide' -%} | |
{% when 'large' %} |
This file contains 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
{% comment %} | |
The contents of the product.liquid template can be found in /sections/product-template.liquid | |
{% endcomment %} | |
{% section 'product-template-enquiry' %} | |
{% section 'product-recommendations' %} |