我正在尝试仅针对已启用且未挂起的产品计算产品数量。我的第一行代码使我能够看到有多少产品可用,但是跨度类别"在线"需要显示已启用的数量,因此无法等待批准。到目前为止,这是我的代码。
//my php
$coreHelper = Mage::helper('core');
$dataHelper = Mage::helper('udprod');
$currencyHelper = Mage::helper('itemique_dropship/currency');
$formHelper = Mage::helper('itemique_dropship/form');
$productFormHelper = Mage::helper('itemique_dropshipVendorProduct/form');
$udprodSourceModel = Mage::getSingleton('udprod/source');
$productCollection = $this->getProductCollection();
$vendor = $this->getVendor();
$sortCol = $this->getSortCol();
$sortDir = $this->getSortDir();
//my phtml
<div class="product-count">
<span class=“products"><?php echo $productCollection->getSize(), $dataHelper->__(' products.') ?></span>
<span class=“online"><?php echo (int) $productCollection->addAttributeToFilter('Status', array('eq' => 1)), $dataHelper->__(' online.'); ?></span>
</div>
这里有一张照片,告诉你我的意思,如果我显示提供更多的信息/代码让我知道。谢谢 http://postimg.org/image/6t71j2e0n/