我需要在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"}}
但它显示所有产品,而不仅仅是新产品。
我该如何解决这个问题?
答案 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');