我正在尝试在magento的类别视图中设置排序顺序。
在/app/design/frontend/template_name/default/template/catalog/product/list.phtml中,产品类别以这种方式调用:
$_productCollection=$this->getLoadedProductCollection();
是否有可能使用例如对此集合进行排序下列? 为了记录,这不起作用。 ;)
->addAttributeToSort('updated_at','asc')->setOrder('updated_at', 'asc')
提前致谢,
马腾
答案 0 :(得分:5)
我所要做的就是做一些SQL查询。
为sort-by属性设置前端标签。
update eav_attribute set frontend_label = "Updated" where attribute_code = "updated_at"
启用used_for_sort_by
update catalog_eav_attribute set used_for_sort_by = 1 where attribute_id = (select attribute_id from eav_attribute where attribute_code = "updated_at")
将updated_at设置为标准排序值(也可以在后端完成)
update core_config_data set value = "updated_at" where path = "catalog/frontend/default_sort_by"
答案 1 :(得分:0)
我发现了一篇博文,可以满足您的需求。需要额外的编码,但它会为您提供所需的额外排序功能。
http://www.excellencemagentoblog.com/magento-category-page-product-sorting
第一部分之后的所有内容,从在类别页面中自定义产品排序开始,为您提供新功能所需的覆盖和附加功能。
如果您认为缺少某些内容并且需要更多功能,请告诉我。