Abandoned Checkout

To get our app’s virtual options to show up correctly in the Abandoned Checkout email notification, you will need to add some code.

  • Go to your Shopify dashboard
  • Select Settings (bottom left)

  • Select Notifications

  • Select Customer Notifications

  • Click on Abandoned Checkouts. It will be in the middle of the page under Order exceptions

  • Click Edit Code (upper right)

In the Abandoned Checkout template search for the code below.

{% for line in subtotal_line_items %}

Then look for the title section below it

Place the code below the title section.

{% for p in line.properties %}
  {% unless p.last == blank %}
    <span class="bcpo-property">{{ p.first }}: {{ p.last }}</span>
  {% endunless %}
{% endfor %}

The result will look like the screenshot below.

Click “Save” in the upper right.

You can revert back to the default notification by scrolling to the bottom of the page and clicking Revert to Default.

Email Notifications Overview

Was this article helpful?
Dislike