Order Confirmation





Last updated





Last updated
{% if line.variant.title != 'Default Title' and line.bundle_parent? == false %}{% if line.variant.title != 'Default Title' %}{% for p in line.properties %}
{% if p.first contains '_io_' %}
{% continue %}
{% endif %}
{% if p.last %}
{% assign name = p.first %}
{% assign value = p.last %}
{% else %}
{% assign name = p.name %}
{% assign value = p.value %}
{% endif %}
{% unless value == blank %}
<p style='margin-top: 0px; margin-bottom: 0px; font-size: 14px; color: #999;'>
{{ name }}:
{% if p.last contains '//uploadery.s3' %}
<a style='font-size: 14px;' href="{{ value }}">Link to your file</a>
{% else %}
{{ value }}
{% endif %}
</p>
{% endunless %}
{% endfor %}<br>