Articles on: Order management

Add Date/Time in packaging slip or invoice.

If you want to add the date/time on packaging slip or invoice and get it printed.

# Easy way- (Recommended)

Go to advanced settings section in the settings page.

Goto advanced settings

Then enable the below checkbox. This will add the date/time to the order note.

And order note can then be printed in the packaging slip.

Append Date/Time to order note




Optionally, If you want to format it, click on the following link in Helpful Shortcuts

Shortcut: Edit packaging slip

Replace the following code

<p class="notes-details">
   {{ order.note }}
</p>


with

{% assign note_array = order.note | split: " | " %}
{% for note_item in note_array %}
   <p class="notes-details">{{ note_item }}</p>
{% endfor %}





Advanced Way - (Optional)



You will need Shopify’s order printer app in order to add date and time in the packaging slip

Simply use the following code snippet in the packaging slip template to add the date / time

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


Need Help?



If you are facing issues with the setup like the slot picker not appearing or the slots not working as per your requirement. We provide setup assistance for free. Please ping us via in-app chat bubble or mail us at support@birdchime.com for setup assistance.

Updated on: 12/04/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!