Yes, this is certainly possible, but it requires some customization on the output, using a small code snippet:
add_filter( 'wpo_wcpdf_order_item_data', 'wpo_wcpdf_quantity_color', 10, 3 );
function wpo_wcpdf_quantity_color( $item, $order, $template_type ) {
if ( intval( $item['quantity'] ) > 1 ) {
$item['quantity'] = sprintf('<span style="color:red;font-weight:bold;">%s</span>', $item['quantity'] );
}
return $item;
}
If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters
Alternatively, if you want a simpler solution that requires no coding, you may consider purchasing our Premium Templates extension. In that case you can simply add this to the “Custom Styles” setting on the Customizer tab:
.quantity.multiple {
color: red;
font-weight: bold;
}
or, if you want to limit this to the packing slip:
.packing-slip .quantity.multiple {
color: red;
font-weight: bold;
}
Hope that helps!