Articles on: Notifications and validations

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.


Shows the Bird App Settings navigation menu with Order Management highlighted


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:



Shows the Order notes and fulfillment settings with toggle options for adding date/time to order note


Demonstrating how enabled append date/time to order note setting looks in order note


Step 3: Format Display (Optional)


For better formatting, navigate to Bird App Settings > Notifications > Customer notifications > Edit packaging slip.


Shows the packaging slip editing option under Customer Notifications section in Notifications setting


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 %}


Shows the highlighted code that is to be replaced in the packaging slip code editor


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."



Shows the translation code example with custom language terms


Your translated packaging slip will display like this in the case above:


Shows the final translated packaging slip with Dutch language labels


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 %}


Shows the final packaging slip with Bird App delivery details displayed in the highlighted section



Updated on: 09/23/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!