# 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="/files/FVvU3twGNU9LkigyUXRf" alt=""><figcaption></figcaption></figure>

2\. Select Customer Notifications.

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

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

<figure><img src="/files/CJ2SM0tplGPv5GB6NVSc" 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="/files/bgtpKJLcMknjHn35RKSm" 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="/files/d0He3WvOVTKdzqZnhIGi" alt=""><figcaption></figcaption></figure>

5\. 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/legacy-display-options-on-shopify-notifications/order-confirmation.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.
