Default Text in {{custom message}} for Draft order invoice notification

yazzyg
Visitor
1 0 0

Hi,

I want to change the notification 'Draft order invoice' and change the email template so that the Custom Message has default text already populated in there (see image below). How do I update the email template to allow this to happen? Any assistance appreciated 🙂

ShopifyDraftOrders.PNG

 

What do I add here to make it happen:

ShopifyDraftOrders2.PNG

 

Thanks!!

Replies 2 (2)

InfinityK
Tourist
3 0 1

I am also wondering this!

qnewson
Visitor
1 0 0

You will want to add this on the line right above the one you have highlighted. It'll look something like this. 

 

<h2>Payment of {{ order.total_outstanding | money }} is due {{ due_date | date: format: 'date' }}</h2>
{% endif %} This is where you will want to enter your message.
{% if custom_message != blank %}
<p>{{ custom_message }}</p>
{% endif %}
{% if checkout_payment_collection_url %}

 

 

I hope this helps.