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