> 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/legacy-display-options-on-shopify-notifications/abandoned-checkout.md).

# Abandoned Checkout

Follow the steps below to display option selections in the abandoned checkout emails.

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

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

2\. Search for the Order exceptions section and select the Abandoned checkout template.

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

3\. Select the **Edit code** button at the top right.

\
4\. Locate the following line of code.

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

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

5\. Copy and paste the following snippet after the section of code.

```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/5hgG518UwJlq9hgPgIWw" alt=""><figcaption></figcaption></figure>

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