> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/uploadery/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/uploadery/display-uploadery-on-shopify-notifications/order-printer-pro-templates.md).

# Order Printer/Pro templates

## Order Printer <a href="#order-printer" id="order-printer"></a>

Follow the steps below to display upload details on the Order Printer app.

1\. Starting from the Order Printer app, click the **Templates** tab.

2\. Click on the **Invoice** template.

3\. Locate the **Code** editor and search for this code snippet below.

```liquid
<td>{{ line_item.title }}
```

4\. Replace that line of code with this code snippet below.

```liquid
<td>
{{ line_item.title }}
{% for property in line_item.properties %}
{% if property.first contains '_io_' %}{% continue %}{% endif %}
{% if property.last == blank  %}{% continue %}{% endif %}
<br>{{ property.first }}: {{ property.last }}
{% endfor %}
```

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

5\. **Save** your changes.

## Order Printer Pro <a href="#order-printer-pro" id="order-printer-pro"></a>

If you have Order Printer Pro, you're in luck!

This app supports line item properties (options) on their templates. Simply navigate to the order in the app to view the products with options.

Here is an example of a **Receipt / Invoice** that includes options from our Infinite Options app:

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