> For the complete documentation index, see [llms.txt](https://docs.globo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.globo.io/options/integration/display-option-in-staff-order-notification.md).

# 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="/files/LLpe9T3KBneYiVWAajXP" alt=""><figcaption></figcaption></figure>
{% endstep %}

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

<figure><img src="/files/GUx0EyzJEUoypjfpU7i6" 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="/files/2oUPQkD4l1D14HiBnllz" 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@globo.io**](mailto:contact@globo.io)**.**
