无法在 opencart 自动完成管理中获取所有类别

not able to fetch all category in opencart autocomplete admin

单击“产品”->link 时无法获取所有类别。我有 11 个类别,所有类别都有相同的 4 个子类别,但我只能看到 5 个类别。我怎样才能同时看到所有 11 个?

Rajat 你试过在 admin -> catlog->category 中增加限制吗?

在 admin/controller/category.php 上找到此代码


                'filter_name'  => $filter_name,

                'filter_model' => $filter_model,

                'start'        => 0,

                'limit'        => $limit

            );

并删除数组中的起始值和限制值,因此代码将像这样

$filter_data = array(

                'filter_name'  => $filter_name,

                'filter_model' => $filter_model

            );