1
我怎樣才能每頁設置 的Magento得到每頁產品類別列表
產品對電網的允許值
或設置每頁
產品上網默認值
這樣我就可以限制收集
我當前的代碼是對電網的允許值每頁
public function getLoadedProductCollection() {
$collection = Mage::getModel('catalog/product')->getCollection();
$collection->addCategoryFilter($this->getCategory());
$collection->addAttributeToSelect('*');
$collection->setPage(0,?); // i need the value from one of the settings above
$collection->load();
return $collection;
}
非常感謝你 – elibyy