显示特定类别的magento新产品

时间:2014-09-10 04:33:14

标签: magento

我需要在magento特定类别中显示新项目。

我找到了:

{{block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml"}}

然而它显示了商店范围内的商品,并且还找到了:

{{block type="catalog/product_list" category_id="Category-ID” template="catalog/product/list.phtml"}}

但它显示所有产品,而不仅仅是新产品。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果您使用(注意我将文件名更改为listnew.phtml):

{{block type="catalog/product_list" category_id="Category-ID" template="catalog/product/listnew.phtml"}}

root/app/design/frontend/<package>/<theme>/template/catalog/product/ list.phtml克隆到listnew.phtml并替换为其中:

$_productCollection=$this->getLoadedProductCollection();

$_categoryId = $this->getCategoryId();

$_productCollection = Mage::getModel('catalog/category')->load($_categoryId)
    ->getProductCollection()
    ->addAttributeToSelect('*')
    ->addAttributeToFilter('status', 1)
    ->addAttributeToFilter('visibility', 4)
    ->addAttributeToFilter(
                array(
                    array('attribute' => 'news_from_date', 'is'=>new Zend_Db_Expr('not null')),
                    array('attribute' => 'news_to_date', 'is'=>new Zend_Db_Expr('not null'))
                    )
                )
    ->setOrder('news_from_date', 'ASC');