如何在magento 1.6.2.0中显示最畅销的动态和特定类别?
答案 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。只需要过滤该类别的产品。