我们正在开发汽车汽车零件的在线商店
因此我们需要在年份,品牌和型号属性的基础上过滤产品。
为此,我创建了自定义模块。模块块代码在这里...
public function getYears(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'year');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
public function getMake(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'make');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
public function getModel(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'model');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
public function getYears(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'year');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
public function getMake(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'make');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
public function getModel(){
$attribute = Mage::getModel('eav/config')->getAttribute('catalog_product', 'model');
$option = $attribute->getSource()->getAllOptions(true);
return $option;
}
}
< BR />
通过上面的功能我得到我的可配置产品属性选项和值取决于这些属性选择的基础我想在主页上显示产品?
我该怎么办?
&gt;提前致谢..