Hi,
I have been trying to add cart note in order confirmation email template but it’s not appearing. I am using {{ cart.note }} to fetch it. Is there something I am missing?
Thanks,
Tehreem
Hi,
I have been trying to add cart note in order confirmation email template but it’s not appearing. I am using {{ cart.note }} to fetch it. Is there something I am missing?
Thanks,
Tehreem
[email removed]Tehreem
hope you doing well
try using {{ note }} instead. That’s what it says in the documentation (available here:https://help.shopify.com/en/manual/sell-online/notifications/email-variables/)
I’ve tried these methods, and it’s not working. I need for the customer to see the note in their confirmation page before they hit the Pay button, so they can review the note if they want, and the note also needs to appear in the confirmation email or text. How can I do that? Or, do I need to pay a coder to do this? My current theme is Brooklyn.
Thanks!
You could try:
{{ order.note }}
@anneleends Thanks for your answer
I, too, am having this issue.
The order note liquid is presenting itself in the preview on the settings page and on the test email. However, it does not actually occur when an order is placed and sent to the customer.
I have the order note placed down in the customer information section:
{% if billing_address %} {% endif %}
Billing address{{ billing_address | format_address }} |
Order notes: {{ note }}
** **See attachments of preview in settings, test email, and an actual customer email.
Shipping method{{ shipping_method.title }} |
I already applied above, you should use {{ order.note }} instead of {{ note }}
Good luck!
Go to:
Settings
Notifications
Order confirmation
Scroll down to find the code for billing address, and you can add your note code in straight after it so it will appear like this:
{% if billing_address %}
Order notes: {{ order.note }}
I initially tried using {{ note }} but while the order note showed up in test emails and in the preview, it didn’t actually show up in real time customer email order confirmations. {{ order.note }} worked for me.