起初我是 magento 的新手..
我只想显示带有属性过滤的产品值
我想运行类似的东西www.somesite.com/something.php
,我应该能够看到产品详细信息..
我已经为我的疑问找到了一些代码,但我不明白如何运行该代码 www.somesite.com/something.php
请建议我
起初我是 magento 的新手..
我只想显示带有属性过滤的产品值
我想运行类似的东西www.somesite.com/something.php
,我应该能够看到产品详细信息..
我已经为我的疑问找到了一些代码,但我不明白如何运行该代码 www.somesite.com/something.php
请建议我
您必须使用属性过滤器在您的收藏中执行以下操作:
$collection->addAttributeToFilter('status',1); //only enabled product
或者
$collection->addAttributeToFilter('created_at', array('date' => true, 'to' => $fromDate)); //product created
ETC
例如
$collection = Mage::getResourceModel('catalog/product_collection');
$collection->addAttributeToFilter('status',1); //only enabled product
$collection->setOrder('created_at', 'desc');
$collection->addAttributeToSelect('*'); //add product attribute to be fetched
$collection->addStoreFilter();