Show Avis option on Order confirmation Email/Order invoice/New order
In case options already show, this can also be used to remove apo tags from your document as well.
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