Editing Your Shopify Confirmation Email
If you have included a form on your Shopify product page and want it to also be included on your Shopify order confirmation, just follow the steps below.
As a reference, this is the default order confirmation summary email on Shopify whenever a customer purchases a booking product from you:
- On your Shopify account, click on Settings > Notifications > Order Confirmation
- Search for the following text on this page:
list__item-title
- Place this snippet directly below that line:
{% 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 %}
- Click Save.
Here is an example of what the updated Shopify confirmation email order summary can look like after the customization: