我有Magento enterprise 1.12。我希望在每个类别的主菜单中添加最高价格。
我有以下代码,但它在孔存储中返回最高价格,我需要将类别ID传递给此函数。
$max = Mage::getModel('catalog/layer_filter_price');
$max_price = $max->getMaxPriceInt()+1;
提前致谢。
答案 0 :(得分:0)
你好检查下面的代码可能会对你有所帮助
<?php echo $maxPrice=Mage::getSingleton('catalog/layer')
->setCurrentCategory(Mage::registry('current_category'))
->getProductCollection()
->getMaxPrice(); ?>