# 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:

{% stepper %}
{% step %}
From your **Shopify admin**, click **Settings,** Select **Notifications**

Scroll down to the **Staff Order Notifications** section

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FTYu9ehwQYRJbyGIzTI7x%2Fimage.png?alt=media&#x26;token=f91e70be-81b5-4c45-af20-50757a89f048" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
Click **New order**

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FUPTZMXpQKkEIvUCHSEeA%2Fimage.png?alt=media&#x26;token=312405fc-172c-43f4-94e6-58df14843acc" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
**Download the New Order template** *(*[*click this button to download*](https://github.com/globo-software/display-cart-line-item-in-notification/blob/main/gpo-new-order-notification.liquid)*)*
{% endstep %}

{% step %}
Open the downloaded file and **copy the code**&#x20;

```
 <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

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FvuiHgjLyDe0nzsiL0aD7%2Fimage.png?alt=media&#x26;token=c97e8980-b9bc-46d1-9a2f-1b65e4dac25c" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
**Save**
{% endstep %}
{% endstepper %}

📧 **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@globosoftware.net>**.
