# 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**.

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-3a46ddaf28cd2c7e482e9e7952d7b71a22bc03e5%2Fdocsassets555e25e4e4b027e1978e1c9aimages67bfd9edc671313b703d24fbfile-nkorhxti81.png?alt=media)

3\. Select **Staff Notifications**.

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-8c6ad405eee274321c4839b2ae8cbb8c8b0753a0%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c1225beb83be0e0d28c6abfile-v9obexuefn.png?alt=media)

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-28ee6add68b054a4173b693a21b20c5855519700%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c122a1a0a634459896d034file-fjtiackuvd.png?alt=media)

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-5a39cceeddb36bb7c6526eff091262e0fc2ab988%2Fdocsassets555e25e4e4b027e1978e1c9aimages67fef4303a43c03e6d9ab8bbfile-fhugplu5ex.png?alt=media)

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-f6e7bc2b58cced6b0141f3a2d867b84ccee21a1a%2Fdocsassets555e25e4e4b027e1978e1c9aimages67fef4a928312b17f77e90f4file-e7wmog88wt.png?alt=media)

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