# Shipping Confirmation

Follow the steps below to display option selections in the shipping confirmation emails.

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FfBUWcvi3AfOZHrKik0Ta%2Fimage.png?alt=media&#x26;token=f3eebd7f-fdbf-4d1a-b33f-ce885205ee65" alt=""><figcaption></figcaption></figure>

2\. Select Customer Notifications then click on the link for the **Shipping Confirmation** email.

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

3\. Locate the following line of code (remove any unnecessary spaces at the end).

```html
<span class="order-list__item-variant">Part of: {{ group.display_title }}</span><br/>
```

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

4\. Copy and paste the following snippet after the section of code that ends with **{% endif %}**.

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

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

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