Hello! I’m using the new Order Printer and I’m trying to add the fulfillment date at the top instead of the printed date. While the following code I was able to find worked with orders of a single item, it is showing duplicated dates if the order consists of multiple items.
Invoice Date {% for fulfillment in fulfillments %}
{{ fulfillment.created_at | date: “%m/%d/%y” }}
{% endfor %}
Thank you in advance!
