Packing Slip

Topic summary

A user seeks help customizing Shopify’s default packing slip to add their company logo and phone number, expressing difficulty with template code.

Solutions offered:

  • Manual editing approach: Navigate to Settings → Shipping and delivery → Packing slips → Edit. Insert CSS/HTML code snippets after the <body> tag for the logo and before </body> for phone number contact information.

  • Third-party apps: Multiple participants recommend invoice/packing slip apps that provide visual, no-code customization interfaces. Specific apps mentioned include Fordeer Invoice Order Printer and PostPrint.

  • Video tutorials: Links to YouTube guides demonstrating packing slip customization were shared.

The discussion remains open with no confirmation from the original poster about which solution was implemented. Images comparing Shopify’s basic packing slip to the user’s previous custom version illustrate the desired changes.

Summarized with AI on October 25. AI used: claude-sonnet-4-5-20250929.


Hi guys!! :))

Does anyone know how i can change my packing slip, im of no use with the code on the templates lol

I want to add our logo to the packing slip, its also missing our the company phone number off the bottom.

Thanks

I have attached a ss of the Shopify basic packing slip compared to our old one

Hi @rosiecotton , I hope you are doing well, kindly checkout below videos

And

And

If my reply is helpful, kindly click like and mark it as an accepted solution.

Thanks!

Hi @rosiecotton ,

You can consider to use our invoice app for adding logo and phone number to your packing slip for free. It’s quick and easy and don’t require coding.

You can edit Shopify’s default packing slip by going to:
Settings → Shipping and delivery → Packing slips → Edit.

To add your logo at the top, paste this just after the <body> tag:

<div style="text-align: center; margin-bottom: 20px;">
  <img 
    src="https://cdn.shopify.com/s/files/your-store-logo.png" 
    alt="Company Logo" 
    style="max-width: 200px; height: auto;"
  >
</div>

To add your phone number at the bottom, paste this just before </body>:

<div style="text-align: center; font-size: 12px; margin-top: 20px;">
  Call us: (123) 456-7890
</div>

If editing Liquid feels tricky, there are apps (like our PostPrint) that let you design packing slips visually with no coding and easily add logos and custom text.

Hope this helps!