Shopify themes, liquid, logos, and UX
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:
<p style="float: right; text-align: right; margin: 0;">
{{ 'now' | date: '%d/%m/%y' }}<br />
Kvittering for {{ order_name }}
</p>
I’m having the same issue, did you ever fix this?
Same problem here,
Change:
Order {{ order.order_name }}<br />
{% if order.po_number %}PO # {{ order.po_number }}<br />{% endif %}
{{ "now" | date: "%B %e, %Y" }}
To:
<p style="text-align: right; margin: 0;">
Order {{ order.order_name }}<br />
{% if order.po_number %}PO # {{ order.po_number }}<br />{% endif %}
{{ order.created_at | date: "%d-%m-%Y" }}
</p>
2m ago Learn the essential skills to navigate the Shopify admin with confidence. T...
By Shopify Feb 12, 2025Learn how to expand your operations internationally with Shopify Academy’s learning path...
By Shopify Feb 4, 2025Hey Community, happy February! Looking back to January, we kicked off the year with 8....
By JasonH Feb 3, 2025