rjtkatoch007
rjtkatoch007

Reputation: 23

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. How can I see all 11 at the same time?

enter image description here

Upvotes: 1

Views: 852

Answers (2)

Saeed Ahmed
Saeed Ahmed

Reputation: 88

on admin/controller/category.php find this code


                '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

            );

Upvotes: 0

khushmeet singh
khushmeet singh

Reputation: 106

Rajat did u try increasing the limit in admin -> catlog->category ?

Upvotes: 1

Related Questions