如何在主页magento上添加属性或属性集。 1.9.0

时间:2016-04-01 12:35:31

标签: magento-1.9

我想在前端(magento)添加自定义搜索。所以我想在前端添加2或3个属性来进行自定义/高级搜索。我试图将catalosearch / advanced添加到前端,但属性没有像产品页面那样显示为下拉菜单。 谢谢:))

2 个答案:

答案 0 :(得分:0)

首先使该属性可以从admin中搜索到。目录 - >属性 - >管理属性。启用用于快速搜索并用于高级搜索。 然后通过此

获取所有searcheable属性
$attributes = array();
foreach ($this->getSearchableAttributes() as $_attribute):
        $attributes[$_attribute->getAttributeCode()] = $_attribute;
endforeach;

通过此$ attributes ['attribute_code']显示属性;

答案 1 :(得分:0)

您只需单击manage properties并检查该特定属性的前端属性。您只需要更改以下内容:

在前端的产品视图页面上可见 - 是

使属性可搜索