-2

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

4

1 回答 1

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:默认显示类别模块中的所有子类别(php)

于 2015-10-29T18:33:00.040 回答