Magento可配置产品库存= 0

时间:2013-06-17 08:13:37

标签: magento

我在list.phtml中有这个自定义代码,当产品数量变为0时显示图像:

    <?php $stock_count = (int) Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product)->getQty();
if ($stock_count <1) {

    echo '<span style="position:relative;top:-230px;float:right;"><img src="http://www.mysite.com/images/ico_outofstock.png" border=0></span>';


} 
?>

问题是如果产品是可配置的,它仍然会显示缺货图像。
我需要的是添加像

这样的东西
if($_product->isConfigurable()) { 

以上代码,因此仅为简单产品显示过剩图像 感谢

0 个答案:

没有答案