You can add a font-weight style such as “font-weight: bold;” to the .table-tabular css block:
.table-tabular {
/* Line item info styling */
font-size: 14px;
font-weight: bold;
}
Issue Identified:
After migrating from the legacy Order Printer app to the new version, the shipping method no longer displays on invoices. The previous code using order.shipping_method or shipping_method returns blank fields.
Solution Provided:
MakP identified the correct syntax for the new version:
Shipping: {{ order.shipping_methods[0].title }}
This successfully retrieves and displays the shipping method name.
Additional Formatting Issues Resolved:
Outcome:
Multiple users confirmed the solutions worked. The thread demonstrates that the new Order Printer requires updated Liquid syntax (order.shipping_methods[0].title instead of order.shipping_method) and benefits from explicit CSS styling rather than relying on legacy formatting approaches.
You can add a font-weight style such as “font-weight: bold;” to the .table-tabular css block:
.table-tabular {
/* Line item info styling */
font-size: 14px;
font-weight: bold;
}