不要删除magento中的过滤器

时间:2016-01-06 06:49:59

标签: magento

我在磁电机中应用滤波器。但是,如果我点击任何过滤器现在隐藏某些过滤器我想要始终显示所有过滤器。任何帮助将赞赏

1 个答案:

答案 0 :(得分:0)

隐藏位于app\code\core\Mage\Catalog\Model\Layer\Filter\Attribute.php此部分的其他选项的代码部分。

if ($filter && strlen($text)) {
    $this->_getResource()->applyFilterToCollection($this, $filter);
    $this->getLayer()->getState()->addFilter($this->_createItem($text, $filter));
    $this->_items = array();
} 

在本地池中覆盖此部分。