如何显示畅销动态特定类别?

时间:2012-04-04 06:30:29

标签: magento magento-1.4 magento-1.5

如何在magento 1.6.2.0中显示最畅销的动态和特定类别?

1 个答案:

答案 0 :(得分:1)

要显示畅销书,您可以从资源模型报告中加载产品集合,如下所示

$products = Mage::getResourceModel('reports/product_collection')
            ->addOrderedQty()
            ->addAttributeToSelect(array('name', 'price', 'small_image', 'short_description', 'description')) //edit to suit tastes
            ->setStoreId($storeId)
            ->addStoreFilter($storeId)
            ->setOrder('ordered_qty', 'desc'); //best sellers on top

并按类别加载它们,您可以获取当前类别或将其传递给harcoded。只需要过滤该类别的产品。