Creating a Packing Slip on the Shopify Order Printer app

Shopify's Packing Slips and POS receipts do not support showing order attributes. However, You can turn on "Add Supertime details to Order Notes" under Additional Settings store to Supertime details in your order notes, and print that in your packing slips and POS receipts. 

However, there are other apps that can generate packing slips where you have access to order attributes, including Shopify's own Order Printer app. You can pull in Supertime attributes into those templates.

Here's a sample snippet that you can add to the packing slip template for these Order Printing apps - note for the date snippet, please use a date format that is local to your store's date format!

<div style="margin: 0 0 1.5em 0; padding: 1.5em; border: 1px solid black;"> 
	 <p>Date: {{ attributes["Supertime Delivery Date"] | date: "%m/%d/%Y" }}</p> 
	 <p>Time: {{ attributes["Supertime Timeslot"] }}</p> 
	 <p>Delivery Method: {{ attributes["Supertime Delivery Method"] }}</p>
</div>
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.