Change date on receipt to order date instead of "now"

I am using the “Order Printer” app to create receipts, but it shows the date the receipt was made, and not when the order was placed.

Is there a way to change it from “todays date”, to the date the order was created?

Here is the code:

{{ 'now' | date: '%d/%m/%y' }}
Kvittering for {{ order_name }}

2 Likes

I’m having the same issue, did you ever fix this?

1 Like

Same problem here,

Change:

Order {{ order.order_name }}

{% if order.po_number %}PO # {{ order.po_number }}
{% endif %}
{{ “now” | date: “%B %e, %Y” }}

To:

Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}
{% endif %} {{ **order.created_at** | date: "%d-%m-%Y" }}