How can I include shipping method on printed packing slips?

Does anyone know how to add shipping method to print on the Shopify packing slips?

We use the paper during the pick and box process. Without having it on there it makes it hard to know if we can use a priority mail or ups express box without looking at the computer.

3 Likes

I would love to know the answer to this also.

Hi Justin, you can add shipping method on the Shopify packing slip by editing the packing slip template.

To edit the packing slip template, you can go to your store Settings > Shipping and Delivery, scroll to the “Packing Slips” section, and click Packing slip template .

You can find the line <div class="shipping-address"> in the template , and add <h2>{{ order.shipping_method.title }}</h2> below that line .

And then find the line <div class="billing-address"> in the template, and add <h2> </h2> below that line. (This step is to make the spacing so that the billing address will align vertically with shipping address, as the shipping method is added to shipping address layout)

I have also written a tutorial for this with step by step screenshot on where to add the code here : https://yagisoftware.com/articles/how-to-add-shipping-delivery-method-name-into-packing-slip-templat…

Hope this helps!