All things Shopify and commerce
Hi. Currently all notes added to an order are internal and can only be viewed by staff. Is there an app or a code that can allow me to add a note to an existing order and for the customer to be able to view it on his end and also get notification via email that a note has been added?
You can include the order note in emails using {{ note }}.
Reference: https://shopify.dev/docs/themes/liquid/reference/objects/order#order-note.
To implement that, an example would be to edit your order confirmation email and add some code like this:
{% if order.note %}
<p><b>Order notes</b>: {{ note }}</p>
{% endif %}
Thank you for this. Added in the order notification and it worked. The only thing missing though is it does not automatically send an email to the customer. I need to resend the order confirmation email and notes will show up.
Is it possible that every time a note is added to the order that it will automatically send an email saying A NOTE HAS BEEN ADDED TO YOUR ORDER?
If it's in the order confirmation email, then it should send when that email sends out.
If you'd like the email to be sent outside of Shopify's notification system, you (or my team if you need a developer) can set up a custom email server that listens for events on your site and triggers an email as you'd like (for example, like you said when a note is added to the order).
If it's not sending on the first notification, but on your resend, try experimenting with your code. For example, instead of {{ note }}, try the full variable {{ order.note }}.
Hi, I would like to add the notes from a draft order to an "draft order invoice" email. I have tried the above code but it doesn't seem to work. Does the code need to be different for a draft order?
Thank you.
Hey Community! As we jump into 2025, we want to give a big shout-out to all of you wh...
By JasonH Jan 7, 2025Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024