kimykimy Posted September 3, 2012 Share Posted September 3, 2012 when my customers has placed an order with a larger quantity than 1, prestashop is not showing it in red. this code is supposed to fix it: ($quantity > 1 && $product['customizationQuantityTotal']>0 ? 'style="font-weight:700;font-size:1.1em;color:red"' : '') where shall i put it? i'm using PrestaShop™ 1.4.9.0 Link to comment Share on other sites More sharing options...
jagh3d Posted February 27, 2013 Share Posted February 27, 2013 (edited) In the folder admin / tabs / AdminOrders.php line 798. I have it so <td align="center" class="productQuantity" '.($quantity > 1 ? 'style="font-weight:700;font-size:1.1em;color:red"' : '').'>'.(int)$quantity.'</td> Edited February 27, 2013 by jagh3d (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts