Infinite Options: Display option selections in Order Printer templates

Follow the steps below on how to display option selections on the 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.

<td>{{ line_item.title }}</td>

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

<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 %}

4. Save your changes.