隐藏或删除Magento中捆绑产品的数量箱


Hide or remove Qty box for bundle product in Magento

花了一些时间试图弄清楚如何仅为捆绑产品中的下拉菜单隐藏数量框。我只是试图隐藏捆绑产品中每个产品下显示的数量框,而不是"添加到购物车"按钮旁边的框。我看到它与 magento 版本略有不同,但我使用 1.9.1。如果有人可以帮助我,将不胜感激!

我认为您可以在数量框之前设置检查产品类型的条件

$product = Mage::getModel('catalog/product')->load($product_id); 
$productType = $product->getTypeId();
if($productType != 'bundle'){
   <input type="text" name="qty" value="" >
}