To change the category dropdown menu from 5 to show all
Posted: Mon Apr 06, 2015 8:03 pm
At the products section where we will assign our products to specific categories.
The problem comes from category dropdown menu which shows 5 categories only, even though there are tens of same brand products in database. It is the limit which had kept default in th eback end, so we have to change the code only from the backend.
So here we go :
edit: admin/controller/catalog/category.php
search for the autocomplete method
CODE: SELECT ALL
'limit' => 5 (default)
change the limit from 5 to 20 or 50.
The problem comes from category dropdown menu which shows 5 categories only, even though there are tens of same brand products in database. It is the limit which had kept default in th eback end, so we have to change the code only from the backend.
So here we go :
edit: admin/controller/catalog/category.php
search for the autocomplete method
CODE: SELECT ALL
'limit' => 5 (default)
change the limit from 5 to 20 or 50.