# 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**.

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2F5ZDAyeBkNKozFAMwT0dJ%2Fimage.png?alt=media&#x26;token=8a3b35e9-e577-47b4-9102-611f72997d7b" alt=""><figcaption></figcaption></figure>

3\. Locate the **Packing Slip template** and click on it to edit.&#x20;

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FZGhxRYOJOUAJpb3SACq5%2Fimage.png?alt=media&#x26;token=5f4ae100-a7fe-424e-9402-1985f20196c5" alt=""><figcaption></figcaption></figure>

4\. Copy the following code snippet.

```html
{% 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.&#x20;

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fhw1jxupxqeFQbIS1gVYi%2Fimage.png?alt=media&#x26;token=29cf155c-c012-45ef-8272-1347707211c3" alt=""><figcaption></figcaption></figure>

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