Add Date/Time to draft order Invoice
How to add the date/time on the draft order invoice?
Navigate to Bird App Settings > Order Management.
Scroll down to Order Notes and Fulfillment enable the below checkbox. This will add the date/time to the order note.
You should see the order note being updated as follows after enabling the above option.
Go to Shopify Settings > Notifications > Customer Notifications.
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 paste this code above the order summary table.
If you want to change the labels in the note, enable Bird App Settings > Order Management > Order notes and fulfillment > Translate order notes.
Go to Bird App Settings > Text & Languages > Edit
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: 01/02/2025
Thank you!