我是magento的新手,我的问题是 如何创建自定义产品系列,例如我想要所有价格最低$ 200且最高$ 300
的产品任何帮助将不胜感激..... 提前谢谢,
答案 0 :(得分:1)
检查
$products = Mage::getModel('catalog/product')->getCollection()
->addAttributeToSelect('*')
->addAttributeToSort('price', 'desc')
->addFieldToFilter('price',array('from'=>'200','to'=>'300'))->load();
使用此功能后,您可以根据需要使用此功能。
试试这个
->addFieldToFilter('price',array('gt' => '200', 'lt' => '300'))
答案 1 :(得分:0)
在一个新的product
中加入{{1>} 价格最低$ 200,最高$ 300 ,并仅显示属于category
的产品。
答案 2 :(得分:-1)
$variable = Mage::getModel('folder/model_name')->getCollection()
->addAttributeToSelect('*')
->addAttributeToFilter('entity_id', array(
'from' => '200',
'to' => '300'
))
->load();