cancel
Showing results for 
Search instead for 
Did you mean: 

CUSTOM PACKING SLIPS

Dustinator
New Contributor

Hello all! I have created a custom packing slip with our logo and highlighted quantities above 1. However, when I print the orders out for the day, it only gives me the option to print one per page. It allows me to print two per page only when i select "Default Store Fronts Template" @Moderator-Davis hope you can help my friend! 

1 ACCEPTED SOLUTION

Did some digging, this article is extremely helpful: How do I adjust the style for item quantities? – ShipStation Help U.S.

If you want to highlight & bold qty's >1, go to the Packing Slip Template in your template settings and make the following adjustments to the HTML:

Step 1:

Add this code at the top of the Order Header section of the editor:

<style>
 .quantity {
      font-size:1.5em;
background-color: yellow;
font-weight: bold; } .quantity1 { font-size:1em;
background-color: white; font-weight: normal !important; } </style>

Then, 

Step 2:

  1. Click the Order Items section and find the following line of code:

    <td align="center">[Quantity]</td>
  2. Highlight it and replace with the following code:

    <td align="center" class="quantity quantity[Quantity]">[Quantity]</td>

Step 3: Save your new template and set it as the store's default template in order to print 2 packing slips per page. 

View solution in original post

16 REPLIES 16

Howdy @Dustinator

 

Thanks for joining us here in the community! We are thrilled to have you with us. 

 

My recommendation for first step of investigating this behavior would be to inspect the printing settings. Starting at Settings (gear icon in the top right) > Printing > Printing Setup > Document options. From there, if the labels printing setting you have is to include the packing slip with the label, it will only do one at a time. However you can adjust that here! 

 

If you'd like to be able to print 2 packing slips per page, that is totally fine, they just wont be able to print out with the labels as well. 

 

Please check out this article from our Knowledge Base about Label Document Options and their formatting

 

I hope this helps 🙂 

From Moderator Davis, May the force be with you!

Awesome Davis, Thank you for your help!

Hey Davis .. turns out that was not the solution. With the original packing slip I was able to print 2 packing slips at a time, 2 per page. Now when I try to print with my new custom packing slip, it only allows me to print one packing slip per page instead of 2.

Hey there @Dustinator

 

I'm sorry to hear this was not the solution after all. However, I'm very glad that you're working with our support team on this behavior you're seeing. 

 

I know those custom templates can be a little finicky, so that was definitely the right call to make. Our team will use the information you've provided for further investigation. 

 

With that in mind, if any other brilliant community members have seen and worked around this before, I would invite them to share their work! 🙂

From Moderator Davis, May the force be with you!

Chase_geoshield
New Contributor

Could you possibly send me the line of code you used to highlight quantity over 1??

Hi @Chase_geoshield,

Thanks for reaching out and for being a part of our community.

@Dustinator, were you able to get this resolved? If so, do you mind sharing the solution or part of the code to help Chase and the rest of the community out?

-Erin: Your Friendly Neighborhood ShipStation Community Manager

Bywabee
Rookie

Any way to get that code?

Would pay for that code!

Did some digging, this article is extremely helpful: How do I adjust the style for item quantities? – ShipStation Help U.S.

If you want to highlight & bold qty's >1, go to the Packing Slip Template in your template settings and make the following adjustments to the HTML:

Step 1:

Add this code at the top of the Order Header section of the editor:

<style>
 .quantity {
      font-size:1.5em;
background-color: yellow;
font-weight: bold; } .quantity1 { font-size:1em;
background-color: white; font-weight: normal !important; } </style>

Then, 

Step 2:

  1. Click the Order Items section and find the following line of code:

    <td align="center">[Quantity]</td>
  2. Highlight it and replace with the following code:

    <td align="center" class="quantity quantity[Quantity]">[Quantity]</td>

Step 3: Save your new template and set it as the store's default template in order to print 2 packing slips per page. 

I did everything exactly like this and its highlighting ALL the quantities. I only want quantities over 1 to be highlighted

 

Try adding this after background-color: white

!important

 

<style>
 .quantity {
      font-size:1.5em;
background-color: yellow;
font-weight: bold; } .quantity1 { font-size:1em;
background-color: white !important; font-weight: normal !important; } </style>

Dustinator
New Contributor

Hey sorry for delay, but I believe tightwrapz provided the right code for you guys.

I got it all figured out. It was some mistyping on my part. Now my front office ladies who print PO's don't have to manually highlight anymore.

Awesome! Same!!! My order fulfillment specialist had to manually sift through every single packing slip (hundreds daily) and highlight qty's over 1 so the packers don't make any mistakes, and this completely resolves that!

Howdy all! 

 

Seeing this caliber of teamwork amongst community members is so wonderful.

 

Truly, Teamwork makes the dream work! 🙂 

 

Happy Shipping! 

From Moderator Davis, May the force be with you!