> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/infinite-options/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/infinite-options/display-options-on-shopify-notifications/legacy-display-options-on-shopify-notifications/packing-slip.md).

# 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="/files/epGe97glBsRJI987atGJ" alt=""><figcaption></figcaption></figure>

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

<figure><img src="/files/3ldoygkSSixTYdSilqjH" 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="/files/JWdPfuSxJRqU2uQpcu0f" alt=""><figcaption></figcaption></figure>

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