# Packing Slip

Follow the steps below on how to display option selections in the Packing slip template.

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

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-a637a04d95d4687a1acc4942a21bf152484ab90b%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c1209d9eae600126975abcfile-xvjckgz2ns.png?alt=media)

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-bde369ab7cb07557ef57723b83998f249d1e4a5f%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c120f666c50e0e7db92f44file-bptrezyckc.png?alt=media)

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 %}
```

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-d136dcc3ee432e45917f80123e6a688d8d077035%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c63688a44bcb2862ddf5e7file-k9ruwc2mxi.png?alt=media)

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