ποΈHow to show custom fields on confirmation email to CUSTOMER?
Please go to Settings -> Notifications -> Customer Notifications -> Order Confirmation


Then click to Edit Code to access confirmation email template.
Simply place your cursor on email body and use the keyboard shortcut Ctrl + F (or Command + F on Mac) to activate the search function there. Please look for " line.variant.title "
After locating β{% endif %}β, paste the following code snippet:
{% for property in line.properties %}
{% assign property_first_char = property.first | slice: 0 %}
{% if property.last != blank and property_first_char != '_' %}
<span class="line-item-description-line">
{{ property.first }}: {{ property.last }}
</span><br/>
{% endif %}
{% endfor %}
Click the 'Save' button to apply the changes to the template.
Please allow approximately 30 seconds for the changes to take effect.
PreviousHow to add fields to packing slip template?NextHow to add fields on new order notification emails to STAFF?
Last updated