For the complete documentation index, see llms.txt. This page is also available as Markdown.

Display options in Confirmation Email

This is the email your customer receives right after placing an order. By default, Shopify’s order confirmation email doesn’t include custom option details — but you can change that!

🔔 Note: If you've already customized your email templates, do not copy and paste the full code below. Instead, review and merge it carefully.


📌 Follow These Steps:

1

From your Shopify admin, click on Settings, Select Notifications

2

Under Customer Notifications, click Order confirmation

3

Download the Order Confirmation template (click this button to download)

4

Copy the code

<div class="order-list__item-properties">
	{% assign property_size = line.properties | size %} 
	{% if property_size > 0 %} 
	{% for p in line.properties %} 
	<div class="order-list__item-property">
		{% assign first_character_in_key = p.first | truncate: 1, '' %}
		{% unless p.last == blank or first_character_in_key == '_' %} 
		<span>{{ p.first }}: </span>
		{%- if p.last contains '/uploads/' -%} 
		<a href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> 
		{%- else -%} 
		{{ p.last }} 
		{%- endif -%} 
		{% endunless %} 
	</div> 
	{% endfor %}
	{% endif %} 
</div>

and Paste to Email body (HTML) box

5

Save

📧 Need Help? If you run into any issues while setting up your option set, feel free to reach out to us at Chat or email [email protected].

Last updated

Was this helpful?