-1

在我的网站中,过滤器显示价格:0.00-1.00 卢比。

我需要通过自动获取最小值来对价格进行排序。

以下是来自 filter.phtml 的代码,请帮忙。

   if(!function_exists("_displayDropdown")){
        function _displayDropdown($atts,$displayitemcount,$new_attributeName){
            echo '<select id="layered-select" class="select" name="layered-select" onchange="if (this.selectedIndex > 0) location.href=this[this.selectedIndex].value;">';
            echo '<option selected="selected">'.$new_attributeName.'</option>';
            foreach ($atts->getItems() as $_item){
                echo '<option value="'.$_item->getUrl().'">';
                echo $_item->getLabel();
                if($displayitemcount){
                    echo ' ('.$_item->getCount().')';
                }
                echo '</option>';
            }
            echo '</select>';
        }
    }

    switch ($attributeName) {
        case 'Shoe Size':
        case 'Overthreshold':
            _displayDropdown($this,$displayitemcount,$new_attributeName);
            break;

        default:
            _displayOrderedlist($this,$displayitemcount);
            break;

}

4

1 回答 1

-2

我通过更改 magento 管理面板后端的设置来解决此问题。将价格属性设置为(在分层导航中使用=“是”。)

于 2012-12-10T06:33:14.697 回答