Add Date/Time to draft order Invoice
How to add the date/time on draft order invoice?
Locate the settings and look for advance settings.
Under basic settings enable the below checkbox. This will add the date/time to the order note.
You should see the order note being updated as following after enabling the above option.
Go to Shopify admin -> Settings -> Notifications. And click Draft order invoice.
And then click on Edit code
Copy the following code.
We recommend you to paste this code above order summery table.
If you want to change the labels in the note, under Additional settings enable Translate order notes.
Go to to edit language section
And update the following labels as needed.
Then you can go to your draft order edit page in Shopify admin. You should see the following when you try sending the invoice.
Locate the settings and look for advance settings.
Under basic settings enable the below checkbox. This will add the date/time to the order note.
You should see the order note being updated as following after enabling the above option.
Go to Shopify admin -> Settings -> Notifications. And click Draft order invoice.
And then click on Edit code
Copy the following code.
{% assign note_array = note | split: " | " %}
{% for note_item in note_array %}
<p class="notes-details">{{ note_item }}</p>
{% endfor %}
We recommend you to paste this code above order summery table.
If you want to change the labels in the note, under Additional settings enable Translate order notes.
Go to to edit language section
And update the following labels as needed.
Then you can go to your draft order edit page in Shopify admin. You should see the following when you try sending the invoice.
Updated on: 10/18/2024
Thank you!