Show Avis option on Shipping Confirmation Email
Step 1: Access New Order Email Template
{% unless line.properties == empty %}
<ul>
{% for property in line.properties %}
{% if property.first contains '_apo' %}{% continue %}{% endif; %}
<li> {{ property.first }}: {{ property.last }}</li>
{% endfor %}
</ul>
{% endunless %}
Last updated