Edit Shopify Confirmation Email to Include Product Options
What This Changes
Steps
list__item-title{% assign property_size = line.properties | size %}
{% if property_size > 0 %}
<p>
{% for p in line.properties %}
{% if p.first contains "_options" %}
{% continue %}
{% endif %}
{% unless p.last == blank %}
<small>{{ p.first }}:</small>
{% if p.last contains '/uploads/' %}
<a target="_blank" href="{{ p.last }}"><small>Link</small></a>
{% else %}
<small>{{ p.last }}</small>
{% endif %}
<br>
{% endunless %}
{% endfor %}
</p>
{% endif %}Result
Related
Last updated
Was this helpful?
