我想在我的 magento 电子商务网站上实现主动过滤器。
我已经成功实现它,但问题是,代码仅适用于类别页面而不适用于搜索页面
这是我正在使用的代码
<?php /*Create filter dependencies*/
$_activeFilters[] = array();
$_filters = Mage::getSingleton(‘Mage_Catalog_Block_Layer_State’)->getActiveFilters();
foreach ($_filters as $_filter):?>
<?php echo $this->stripTags($_filter->getLabel()) ?><a href=”<?php echo $_filter- >getRemoveUrl() ?>” title=”<?php echo $this->__(‘Remove This Item’) ?>”><?php echo $this->__(‘Remove This Item’) ?></a>
<?php endforeach; ?>
我在toolbar.phtml 中使用这个代码。任何线索,例如为什么它在搜索页面上不起作用。任何解决方案都会有很大帮助。
谢谢,
寿司