我在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()) {
以上代码,因此仅为简单产品显示过剩图像 感谢