Show preorder offer details on order confirmation email
STOQ supports showing preorder offer details on order confirmation email. This helps merchants provide better information to customers whenever a order is placed enhancing their order journey with the store.
Prerequisites
How to show preorder offer details on order confirmation email
- While logged into your Shopify Admin, go to "Settings".
- Go to "Notifications" section and click on "Customer notifications".
- Click on "Order confirmation".
- Click on "Edit code"
- Find the code that checks for selling plan on the line item:
{% if line.selling_plan_allocation %}
. There should be three instances of it as per the default template. Add the following code below the third instance (third occurrence) of this code.
{% if line.properties %}
{% for property in line.properties %}
<span class="order-list__item-variant">
{{ property.first }}: {{ property.last }}
</span><br/>
{% endfor %}
{% endif %}
- After adding the code to display, click save.
- Whenever the order placed is a preorder, the default Shopify order confirmation email will have all of the offer details you've enabled to show inside the email.
Useful Resources
Updated on: 03/07/2025
Thank you!