2014-06-30 38 views
1

我怎樣才能每頁設置 enter image description here的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; 
} 

回答

3

產品:網格默認值每頁

$allowedValues = Mage::getStoreConfig('catalog/frontend/grid_per_page_values'); 

產品

$defaultValue = Mage::getStoreConfig('catalog/frontend/grid_per_page'); 

使用默認值,您的代碼應如下所示:

public function getLoadedProductCollection() { 
    $collection = Mage::getModel('catalog/product')->getCollection(); 
    $collection->addCategoryFilter($this->getCategory()); 
    $collection->addAttributeToSelect('*'); 
    $collection->setPage(0, $defaultValue); 
    $collection->load(); 
    return $collection; 
} 
+1

非常感謝你 – elibyy

相關問題