> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/infinite-options/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/infinite-options/display-options-on-shopify-notifications/shopify-emails-and-packing-slip-templates/order-confirmation.md).

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

![](/files/wZnYX72Bu3W6uHoGqLEO)

2\. Select **Customer Notifications**.

![](/files/PRx76PP7lWQc6puJMzqY)

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

![](/files/Q1dNKaCRFGjj56ma6pKH)

4\. Click **Edit Code** at the top right of the page.

5\. Locate the following line of code:

```html
<span class="order-list__item-variant">{{ component.variant.title }}</span>
```

You should see this code multiple times. Navigate to the one found at the bottom, most often line 2139:

<figure><img src="/files/DSJuSuVxCfc4CTjn9CL5" alt=""><figcaption></figcaption></figure>

6\. Copy and paste the following snippet after the **{% endif %}** 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>
```

<figure><img src="/files/36czafkEWvba0JL4pkM6" alt=""><figcaption></figcaption></figure>

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