On the tpl_shopping_cart_default.php the part that controls the display based on the settings on the Product for hidding the quantity box or hidding the quantity box because the maximum is set to 1 is managed in this IF statement:
PHP Code:
<?php
if ($product['flagShowFixedQuantity']) {
echo $product['showFixedQuantityAmount'] . '<br /><span class="alert bold">' . $product['flagStockCheck'] . '</span><br /><br />' . $product['showMinUnits'];
} else {
echo $product['quantityField'] . '<br /><span class="alert bold">' . $product['flagStockCheck'] . '</span><br /><br />' . $product['showMinUnits'];
}
?>
Bookmarks