# New Order

Follow the steps below on how to display option selections in the new order emails.

1\. Make sure that you have notifications enabled. Please see [this article](https://help.shopify.com/manual/sell-online/notifications/order-notifications#add-a-notification-for-new-orders) to see how to enable that.

2\. Starting from your Shopify admin dashboard, navigate to the **Settings** tab, then click on **Notifications**.

![](/files/wZnYX72Bu3W6uHoGqLEO)

3\. Select **Staff Notifications**.

![](/files/WHXTEpD9mY95lewoEFnk)

4\. Click on the **New Order** email template.

![](/files/eJ7yf194FqDA0N3ukZ0M)

4\. Locate the following line of code:

```html
<span class="order-list__item-title component">{{ component.quantity }}&nbsp;&times;&nbsp;{{ component_title }}</span><br>
```

You should see three separate results. Locate the last one (near line 913):

![](/files/AKnDlsU6acykb7asoab6)

5\. Copy and paste the following snippet after **`</div>`** and before **`</td>`**.

```liquid
{% for p in component.properties %}
  {% if p.first contains '_io_' %}
    {% continue %}
  {% endif %}
  {% if p.last %}
    {% assign name = p.first %}
    {% assign value = p.last %}
  {% else %}
    {% assign name = p.name %}
    {% assign value = p.value %}
  {% endif %}
  {% unless value == blank %}
    <p style='margin-top: 0px; margin-bottom: 0px; font-size: 14px; color: #999;'>
      {{ name }}:
    {% if p.last contains '//uploadery.s3' %}
      <a style='font-size: 14px;' href="{{ value }}">Link to your file</a>
    {% else %}
      {{ value }}
    {% endif %}
    </p>
  {% endunless %}
{% endfor %}<br>
		
```

![](/files/gHUBo67NvVtDHPLEKqM8)

6\. Click the **Save** button at the top of the page.


---

# 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://shoppad.gitbook.io/infinite-options/display-options-on-shopify-notifications/shopify-emails-and-packing-slip-templates/new-order.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.
