如何始终显示子类别?我希望左边的这个模块显示始终相同 - 所有父类及其子类别。
答案 0 :(得分:0)
在文件catalog\controller\module\category.php
中,替换以下内容:
if ($category_id == $result['category_id']) {
$children = $this->getCategories($result['category_id'], $new_path);
}
...与:
//if ($category_id == $result['category_id']) {
$children = $this->getCategories($result['category_id'], $new_path);
//}
来源:http://forum.opencart.com/viewtopic.php?f=20&t=3128&p=25921&#p25921
对于Opencart 2,这是解决方案
OpenCart 2: Show all subcategories in category module by default (php)