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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://shoppad.gitbook.io/uploadery/display-uploadery-on-shopify-notifications/order-printer-pro-templates.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
