To get our apps virtual options to show up correctly in the abandoned checkout email notification, you will need to edit the code.
Here is the notification template for Abandoned Checkout.
- Go to your Shopify dashboard
- Then Settings
- Then Notifications
- Then Orders > Abandoned Checkout
Look for the section that looks like this:
{% if line.variant.title != 'Default Title' %}
<span class="order-list__item-variant">{{ line.variant.title }}</span><br/>
{% endif %}
Then paste this code after it:
{% for p in line.properties %}
{% unless p.last == blank %}
<span class="bcpo-property">{{ p.first }}: {{ p.last }}</span><br/>
{% endunless %}
{% endfor %}
Here’s a screenshot of how it should look:
You can revert back to the default notification by scrolling to the bottom of the page and clicking Revert to Default.