Created
January 11, 2021 11:07
-
-
Save adamwooding/cfba455d3ee8564a320013b73d357ccb to your computer and use it in GitHub Desktop.
Shopify - Order Confirmation Code for Product Downloads
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
<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> | |
{% elsif tag == 'tag4' %} | |
<p>Access Image 4 here: <a href="https://DownloadLinkFromAWS.png">Image 4</a></p> | |
{% elsif tag == 'tag5' %} | |
<p>Access Image 5 here: <a href="https://DownloadLinkFromAWS.png">Image 5</a></p> | |
{% endif %} | |
{% endfor %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment