Opencart - 类别总是扩展

时间:2013-02-11 22:09:06

标签: php javascript html module opencart

如何始终显示子类别?我希望左边的这个模块显示始终相同 - 所有父类及其子类别。

1 个答案:

答案 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)