【发布时间】:2023-04-09 12:36:01
【问题描述】:
我试图用 created_at 对产品列表进行排序并按名称分组,这就是我添加的原因
$this->_productCollection->addAttributeToSort('created_at', 'desc')
->getSelect()->group('name');;
之前
return $this->_productCollection;
在函数_getProductCollection()
//app/code/local/Mage/Catalog/Block/Product/list.php
排序工作正常,但分页和项目数量显示错误。
看起来只有 1 个产品,但我这里有很多产品,我没有更改工具栏页面中的任何内容。
【问题讨论】:
标签: magento magento-1.7