==== Make numbers bigger and redder to avoid confusion ==== This mod tweaks the invoice to make numbers larger/highlighed when the quantity is not 1. We had a bunch of orders where someone bought 2 of something and only one shipped and this helped avoid confusion (This presupposes that you have already done the mods above.) \\ \\ {{:zencartmods:bigred.png|}} === admin/invoice.php === Find (line 165) echo ' ' . "\n" . '( ) ' . '  ' . $order->products[$i]['qty'] . ' x' . "\n" . ' ' . $order->products[$i]['name']; and replace with if ($order->products[$i]['qty'] > 1) { echo '' . "\n" . '( ) ' . '  ' . $order->products[$i]['qty'] . ' x' . "\n" . ' ' . $order->products[$i]['name']; } else { echo '' . "\n" . '( ) ' . '  ' . $order->products[$i]['qty'] . ' x' . "\n" . ' ' . $order->products[$i]['name']; }