→ Please follow the below steps to show the order delivery date and time to your Order Printer App.
- Open Shopify Order Printer App.
- Click on the Manage Template button to edit the template.
- Select and click on the template name in which you want to add the date & time.
- Copy the below code and paste it into the template wherever you want to add Order Delivery Date & Time information then hit the Save button.
Order Printer (legacy)
{% for attribute in attributes %}
{% assign attributecheck = attribute | last %}
{% if attributecheck != "" %}
{{ attribute | first | replace: '-', ' ' | replace: '_', ' ' | capitalize }} : {{ attribute | last }}<br/>
{% endif %}
{% endfor %}
Order Printer
{% for attribute in order.attributes %}
{% assign attributecheck = attribute | last %}
{% if attributecheck != "" %}
{{ attribute | first | replace: '-', ' ' | replace: '_', ' ' | capitalize }} : {{ attribute | last }}<br/>
{% endif %}
{% endfor %}
→ For a quick view of all the above steps, please take a look at the video.