08-31-2022 01:45 PM
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!
Solved! Go to Solution.
12-29-2022 11:39 AM
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:
Click the Order Items section and find the following line of code:
<td align="center">[Quantity]</td>
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.
09-01-2022 07:15 AM
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 🙂
09-06-2022 04:06 PM
Awesome Davis, Thank you for your help!
09-13-2022 02:58 PM
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.
09-21-2022 12:21 PM
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! 🙂
12-01-2022 08:45 AM
Could you possibly send me the line of code you used to highlight quantity over 1??
12-05-2022 02:58 PM
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
12-20-2022 09:32 AM
Any way to get that code?
12-29-2022 10:33 AM
Would pay for that code!
12-29-2022 11:39 AM
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:
Click the Order Items section and find the following line of code:
<td align="center">[Quantity]</td>
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.
12-29-2022 11:52 AM
I did everything exactly like this and its highlighting ALL the quantities. I only want quantities over 1 to be highlighted
12-29-2022 12:09 PM
Try adding this after background-color: white
!important
12-29-2022 12:10 PM
<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>
12-29-2022 12:33 PM
Hey sorry for delay, but I believe tightwrapz provided the right code for you guys.
12-29-2022 12:47 PM
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.
12-29-2022 12:54 PM
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!
12-29-2022 01:50 PM
Howdy all!
Seeing this caliber of teamwork amongst community members is so wonderful.
Truly, Teamwork makes the dream work! 🙂
Happy Shipping!