How can I show the delivery date and time in Order Printer Shopify app.

AI Overview

You can display the order delivery date and time in your Order Printer App by following a few simple steps. This feature allows you to customize your order templates to include important delivery information, enhancing communication with your customers. To add the delivery date and time, open the Shopify Order Printer App and click on the Manage Template button.

Select the template you want to edit, then copy and paste the provided code into the desired location within the template. After making your changes, remember to hit the Save button to apply them. For a visual guide, you can refer to the accompanying video.

→ Please follow the below steps to show the order delivery date and time to your Order Printer App.

  1. Open Shopify Order Printer App.
  2. Click on the Manage Template button to edit the template.
  3. Select and click on the template name in which you want to add the date & time.
  4. 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.