Anyone Help with a Order Printer Blank Template Please

Topic summary

A user upgraded to the new Shopify Order Printer app and found their custom invoice templates broken and unprintable. They requested a basic, plain invoice template to use temporarily while fixing their original templates.

Another user responded by providing a working HTML/Liquid template code for a standard invoice. The template includes:

  • Order details (number, date, PO number)
  • Shop and customer addresses (billing and shipping)
  • Line items table with quantities, descriptions, and prices
  • Transaction details and payment information
  • Totals, taxes, shipping, refunds, and outstanding amounts

The provided code appears complete and ready to use as a temporary solution. The issue remains open as the original poster works on restoring their custom templates.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hi

We upgraded this morning to the shopify order printer since the app was updated and our invoices are a mess and unprintable and will take some time to fix.

We dont even have a box standard invoice to use in the meantime as this is the only one in the templates so I was hoping someone may have a plain invoice we can use just for now please

Here is a plain one that should work with the new order printer until you get yours sorted.

Invoice

Order {{ order.order_name }}
{% if order.po_number %}PO # {{ order.po_number }}
{% endif %} {{ "now" | date: "%B %e, %Y" }}

From
{{ shop.name }}
{{ shop.address | format_address }} {% if shop.phone %}{{ shop.phone }}{% endif %}
{% if order.billing_address %}
Bill to {{ order.billing_address | format_address }}
{% endif %} {% if order.shipping_address %}
Ship to {{ order.shipping_address | format_address }} {% if order.shipping_address.phone %}{{ order.shipping_address.phone }}{% endif %}
{% endif %}

Order Details

{% for line_item in order.line_items %} {% endfor %} {% for discount in order.discounts %} {% endfor %} {% if order.shipping_address %} {% endif %} {% if order.net_payment != order.total_net_amount %} {% endif %} {% if order.total_refunded_amount > 0 %} {% endif %} {% if order.net_payment != order.total_net_amount %} {% endif %}
Qty Item Price
{{ line_item.quantity }} {{ line_item.title }} {% if line_item.original_price != line_item.price %} {{ line_item.original_price | money }} {% endif %} {{ line_item.price | money }}
Subtotal {{ order.subtotal_price | money }}
Includes discount {% if discount.code %}"{{ discount.code }}"{% endif %} {{ discount.savings | money }}
Tax {{ order.tax_price | money }}
Shipping {{ order.shipping_price | money }}
Total {{ order.total_price | money }}
Total Paid {{ order.net_payment | money }}
Total Refunded {{ order.total_refunded_amount | money }}
Outstanding Amount {{ order.total_price | minus: order.net_payment | money }}

{% if transactions.size > 1 %}

Transaction Details

{% for transaction in transactions %} {% endfor %}
Type Amount Kind Status
{{ transaction.gateway | payment_method }} {{ transaction.amount | money }} {{ transaction.kind }} {{ transaction.status }}
{% endif %}

{% if order.note %}

Note

{{ order.note }}

{% endif %}

If you have any questions, please send an email to {{ shop.email }}