我试图用 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 个产品,但我这里有很多产品,我没有更改工具栏页面中的任何内容。