How do I hide all prices on a packing slip?

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:

  1. Click the Order Items Header section.

  2. 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>
  3. Click the Order Items section.

  4. 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> 
  5. Click the Order Footer section.

  6. Delete all lines of code that include:

    class="price"
    or
    class="label price"

    This will delete almost all of 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>
  7. 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.

Can’t find what you’re looking for?

Contact our technical support team.
Contact us
Was this article helpful?
0 out of 0 found this helpful