0
カテゴリ別にトップセラーを表示することはできますか?Magentoトップセラー商品番号:
トップセラーを収集する作業コード(下記)がありますが、カテゴリ別にフィルタリングする方法がわかりません!
$storeId = Mage::app()->getStore()->getId();
$collection = Mage::getResourceModel('reports/product_collection')
->addOrderedQty()
->setStoreId($storeId)
->addStoreFilter($storeId)
->setOrder('ordered_qty', 'DESC');
if (Mage::helper('catalog/product_flat')->isEnabled()) {
$collection->getSelect()
->joinInner(array('e2' => 'catalog_product_flat_' . $storeId), 'e2.entity_id = e.entity_id');
} else {
$collection->addAttributeToSelect('*')
->addAttributeToSelect(array('name', 'price', 'small_image'));
}
Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection);
Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($collection);
$collection->setPage(1, 10);
あなたは、製品のコレクションにカテゴリフィルタの下に使用することができます