SEO, AdWords, affiliates, advertising, and promotions
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How could I remind customers that an item is pre-ordered in the order confirmation email?
(I am using 'Amai PreOrder Manager + Notify' for our pre-orders)
We previously had a feature set up which displayed a note next to any pre-ordered items in the order confirmation email containing a reminder that the item is pre-ordered + the expected shipping date. After resetting our emails to default, the feature no longer works and the developer who originally installed the feature is no longer available.
Does anybody know of the most effective way of including pre-order item shipping information in the Shopify email notifications?
To include pre-order item shipping information in Shopify email notifications using 'Amai PreOrder Manager + Notify':
1- Enable Pre-Order Tags: In the Amai app settings, ensure that pre-order tags or notes are enabled for order items.
2- Edit Email Template:
{% for line in order.line_items %}
{% if line.properties['pre-order'] %}
<p>Note: {{ line.title }} is a pre-ordered item and will ship by {{ line.properties['expected_shipping_date'] }}.</p>
{% endif %}
{% endfor %}
3- Test the Email: Save the changes and place a test order with a pre-order item to verify the email displays correctly.
If the app doesn’t automatically add properties, consult Amai's documentation or support for integration guidance.