> For the complete documentation index, see [llms.txt](https://ymq-app.gitbook.io/ymq-product-options-app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ymq-app.gitbook.io/ymq-product-options-app/email-notifications-and-packing-slips-and-invoices/packing-slips.md).

# Packing Slips

Search for "**pack**" in the **shopify admin,**&#x73;elect **Packing slip template**

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

In the Packing Slips template search for the code below.

```html
class="flex-line-item-quantity"
```

Above the **class="flex-line-item-quantity"** code place the following code.

```liquid
{% for p in line_item.properties %}
    {% assign property_first_char = p.first | slice: 0 %}
    {% unless p.last == blank or property_first_char  == '_' %}
        <div class="ymq-property">{{ p.first }}:
        {% if p.last contains '/uploads/' %}
            <div><img src="{{ p.last }}" style="max-width: 50px; height: auto;"></div>
        {% else %}
            {{ p.last }}
        {% endif %}
        </div>
    {% endunless %}
{% endfor %}
```

The result will look like the screenshot below.

<figure><img src="/files/7UAudtOTUhuXY5UOitaY" alt=""><figcaption></figcaption></figure>
