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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.globo.io/options/integration/display-option-in-staff-order-notification.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
