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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Ftmivb1b3W7Utj8SWGuV6%2Fimage.png?alt=media&#x26;token=a656fba5-f656-43c7-95f5-7e08e2656469" alt=""><figcaption></figcaption></figure>

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

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

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

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

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

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

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

```liquid
{% 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>
```

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

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