> 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="https://2625127081-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FadDQ5oZA6CM3C6sDtLH7%2Fuploads%2FZbFCd5vhRuygAP7IsrUI%2Fimage.png?alt=media&amp;token=ea56f779-1e74-463e-a147-5f3c4f318056" 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="https://2625127081-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FadDQ5oZA6CM3C6sDtLH7%2Fuploads%2FPolUzvLdAbqbWInAQwUI%2Fimage.png?alt=media&amp;token=11a6c14a-f700-4b79-9216-cbfc7224e6f3" alt=""><figcaption></figcaption></figure>
