You may want to hide all prices on a packing slip when your customer requests a "gift" packing slip. To edit your packing slip template to remove pricing details, go to the Packing Slip Template in your template settings and do the following:
-
Click the Order Items Header section.
-
Delete the lines of code that contain:
class="price"
Be sure to delete everything between the <th> and </th> tags that contain this class declaration. The code should now look like this:
<tr> <th align="left" style="width:0.75in" class="sku"> Item </th> <th align="left"> Description </th> <th align="center" style="width:0.35in"> Qty </th> </tr>
-
Click the Order Items section.
-
Delete the lines of code that contain:
class="price"
Be sure to delete everything between the <td> and </td> tags that contain this class declaration. The code should now look like this:
<tr> <td class="sku">[Sku]</td> <td>[Item Title]<br>[Item Options]</td> <td align="center">[Quantity]</td> </tr>
-
Click the Order Footer section.
-
Delete all lines of code that include:
class="price" or class="label price"
This will delete almost all the lines of HTML in the footer, so don't be alarmed! Here is what should remain within the <table> tags:
<table cellspacing=0 cellpadding="2" border="0" style="width:100%" class="footer"> <tbody> <tr> <td rowspan="4" class="notes" > [Notes to Buyer] </td> </tr> </tbody> </table>
-
Click Save.
Tip
To complete the "Gift" packing slip template, add the [Gift Message] field replacement in either the Order Header or Order Footer section of the editor.