> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/uploadery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/uploadery/display-uploadery-on-shopify-notifications/shopify-emails-and-packing-slip-templates/packing-slip.md).

# Packing Slip

Follow the steps below on how to display upload details in the Packing slip template.

1\. Navigate into **Settings** of your Shopify admin.

2\. Click on **Shipping and delivery**.

<figure><img src="/files/c4yXL6bmIiAYhHwni2ic" alt=""><figcaption></figcaption></figure>

3\. Locate the **Packing Slip** template and click on it to edit.

<figure><img src="/files/krnsLhmcRbVf8csyaB6M" alt=""><figcaption></figcaption></figure>

4\. Copy the following code snippet.

```liquid
{% if line_item.properties != blank %} 
<span class="line-item-description-line"> 
  {% for p in line_item.properties %}
  {% if p.first contains '_io_' %}
  {% continue %}
  {% endif %}
  {% unless p.last == blank %}
  {{p.first}}: {{ p.last }}<br />
  {% endunless %} 
  {% endfor %}
</span>
{% endif %}
<br>
```

5\. Paste the code that you just copied underneath the following code.

```liquid
{% if line_item.sku != blank %} 
<span class="line-item-description-line">
{{ line_item.sku }}
</span>
{% endif %}
```

<figure><img src="/files/FFj3l0MvKHHxpaPLw6jf" alt=""><figcaption></figcaption></figure>

6\. Click the **Save** button at the top of the page.
