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

Display option in Staff order notification

This is the email the store owner or staff receives when a customer places a new order. To include product option details, you can customize the notification template by following these steps:

1

From your Shopify admin, click Settings, Select Notifications

Scroll down to the Staff Order Notifications section

2

Click New order

3

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

4

Open the downloaded file and 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 contact@globo.io.

Last updated

Was this helpful?