Add Date/Time in packaging slip or invoice.
Learn to display delivery date and time on packaging slips for better tracking.
Quick Setup Method
Enable date/time display on packaging slips in three simple steps.
Step 1: Access Order Management Settings
Navigate to Bird App Settings > Order Management.
Step 2: Enable Order Notes
Scroll to Order notes and fulfillment section. Enable the "Append date/time to order note" option to add date/time information to order notes:
Step 3: Format Display (Optional)
For better formatting, navigate to Bird App Settings > Notifications > Customer notifications > Edit packaging slip.
Replace the existing code:
<p class="notes-details">
{{ order.note }}
</p>
With this improved formatting:
{% assign note_array = order.note | split: " | " %}
{% for note_item in note_array %}
<p class="notes-details">{{ note_item }}</p>
{% endfor %}
That's it! Your packaging slips will now display the delivery date and time information clearly.
Translate Date/Time Labels (Optional)
Customize the display language for your packaging slips.
Replace the formatting code from Step 3 with this translation-ready version:
{% assign note_array = order.note | split: " | " %}
{% for note_item in note_array %}
{% assign translated_item = note_item %}
{% if note_item contains "Delivery Method" %}
{% assign translated_item = note_item | replace: "Delivery Method", "Bezordmethode" %}
{% endif %}
{% if note_item contains "Delivery Date" %}
{% assign translated_item = note_item | replace: "Delivery Date", "Bezorgdatum" %}
{% endif %}
{% if note_item contains "Delivery Time" %}
{% assign translated_item = note_item | replace: "Delivery Time", "Aflevertijd" %}
{% endif %}
{% if note_item contains "Delivery Location" %}
{% assign translated_item = note_item | replace: "Delivery Location", "bezorglocatie" %}
{% endif %}
<p class="notes-details">{{ translated_item }}</p>
{% endfor %}
Important: Replace the Dutch translations above with your preferred language terms. For example, for Spanish: "Método de entrega," "Fecha de entrega," "Hora de entrega," "Ubicación de entrega."
Your translated packaging slip will display like this in the case above:
Advanced Method with Order Printer Pro
Use Order Printer Pro app for enhanced customization options and professional layout.
This method requires the Order Printer Pro app and creates a more professional, layout for your delivery information.
Add this code snippet to your packaging slip template:
{% if attributes["Delivery Date"] %}
<div style="border: 1px solid black; padding: 1.5em; margin: 0 0 1.5em 0;">
<p>Date: {{ attributes["Delivery Date"] }}</p>
{% if attributes["Delivery Time"] %}
<p>Time: {{ attributes["Delivery Time"] }}</p>
{% endif %}
{% if attributes["Delivery Method"] %}
<p>Delivery Method: {{ attributes["Delivery Method"] }}</p>
{% endif %}
</div>
{% endif %}
Related Articles
- Enable order confirmation email with slot date and time
- Add datetime to draft order invoice
- Set up email branding for professional customer emails
Updated on: 09/23/2025
Thank you!