简体   繁体   English

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

[英]not able to fetch all category in opencart autocomplete admin

I am not able to fetch all the categories when I click on Products->link.单击“产品”->“链接”时,我无法获取所有类别。 I have 11 categories and all categories have same 4 subcategory, but I am only able to see 5 categories.我有 11 个类别,所有类别都有相同的 4 个子类别,但我只能看到 5 个类别。 How can I see all 11 at the same time?我怎样才能同时看到所有 11 个?

在此处输入图片说明

Rajat 有没有尝试增加 admin -> catlog->category 的限制?

on admin/controller/category.php find this code在 admin/controller/category.php 上找到这个代码


                'filter_name'  => $filter_name,

                'filter_model' => $filter_model,

                'start'        => 0,

                'limit'        => $limit

            );

And remove the start and limit values in array so the code will be like this并删除数组中的开始和限制值,因此代码将是这样的

$filter_data = array(

                'filter_name'  => $filter_name,

                'filter_model' => $filter_model

            );

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM