Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamwooding/cfba455d3ee8564a320013b73d357ccb to your computer and use it in GitHub Desktop.
Save adamwooding/cfba455d3ee8564a320013b73d357ccb to your computer and use it in GitHub Desktop.
Shopify - Order Confirmation Code for Product Downloads
<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