# Order Confirmation

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

1\. Starting from your Shopify admin dashboard, navigate to the **Settings** tab, then click on **Notifications**.&#x20;

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FJIQOvGvnkDv1xNLlh4mN%2Fimage.png?alt=media&#x26;token=e75aea98-2cc2-4c01-bf9e-ea5cf2ff6153" alt=""><figcaption></figcaption></figure>

2\. Select Customer Notifications.

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FephoI5QBf1x06bF4IZZp%2Fimage.png?alt=media&#x26;token=5b35586f-5577-48aa-8a33-ec4cf4deb70e" alt=""><figcaption></figcaption></figure>

2\. Click on the  **Order Confirmation** email template.

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2F9cg7LzSZjgdz6kYnlKqm%2Fimage.png?alt=media&#x26;token=3ae38267-ab68-4145-8a66-ad3bd608ac88" alt=""><figcaption></figcaption></figure>

3\. Locate the following line of code. There will be several results; we'll focus on the last instance around line 865:

```html
{% if line.variant.title != 'Default Title' and line.bundle_parent? == false %}
```

OR

```html
{% if line.variant.title != 'Default Title' %}
```

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FdzNC23CyROmdq7ERuKFQ%2Fimage.png?alt=media&#x26;token=b1e79c29-8882-471f-a6cd-49dff742e5ba" alt=""><figcaption></figcaption></figure>

4\. Copy and paste the following snippet where "ADD CODE SNIPPET HERE" is shown above.

```html
{% for p in line.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>

```

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FluRk5ZAMJ5jYwfcUrsdp%2Fas_orderconfirmation_IO.png?alt=media&#x26;token=9b8dddaa-7321-40d4-8d1f-0dca122c8552" alt=""><figcaption></figcaption></figure>

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