How to change date in packing slip in Order Printer app?

Hello! Packing Slip of all my orders in Order Printer App are showing todays date. How can I have the date on my packing slip for when it was ordered ?
What customization code should I use in Order Printer App for this?

Hi there, Felix here from Final Invoice Pro

Our Order Printer app allow to add or remove this easily without any code.

Let me know if you need any assistance!

Thanks

Hello, I have the same problem with the code in my invoice template.
How can I have the date on my invoice for when it was ordered?
Thanks

This line will tell you when the invoice was printed:

Printed: {{ ‘now’ | date: ‘%d-%b-%Y’ }}

This line will tell you when the order was created:
Prepared: {{ created_at | date: ‘%d-%b-%Y’ }}

You can find different date formats using this website:

https://strftime.net/

1 Like

Thank you, the snippet was very helpful!