当前位置 : 主页 > 网络推广 > seo >

Magento – 从分层导航中检索当前集合中的最高产品价格

来源:互联网 收集:自由互联 发布时间:2021-06-16
分层导航过滤器是在中创建的 app/design/frontend/base/theme/template/catalog/layer/filter.phtml 如何从此文件中检索当前产品集合中最高产品价格的值? 我已经尝试过我认为明显的选择$this-来自Mag
分层导航过滤器是在中创建的

app/design/frontend/base/theme/template/catalog/layer/filter.phtml

如何从此文件中检索当前产品集合中最高产品价格的值?

我已经尝试过我认为明显的选择$this->来自Mage_Catalog_Model_Layer_Filter_Price的getMaxPriceInt(),但这似乎不适用于filter.phtml.

假设$collection是’catalog / product’的集合,这应该可以解决问题:

$product = $collection->setOrder('price', 'DESC')->getFirstItem();
网友评论