Reputation: 23
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?
Upvotes: 1
Views: 852
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
Reputation: 106
Rajat did u try increasing the limit in admin -> catlog->category ?
Upvotes: 1