When new categories are added to the multi-level navigation blocks in Prestashop, they are placed at the end of the list which makes it look quite messy. If you want to sort all your categories in alphabetical order you can do the following:
In the file modules/blocklayered/blocklayered.php change this line:
1 |
GROUP BY c.id_category ORDER BY c.nleft, c.position'; |
To this one:
1 |
GROUP BY c.id_category ORDER BY cl.name ASC, c.nleft, c.position'; |
Partner With Us
Looking for a partner to grow your business? We are the right company to bring your webstore to success.
Talk to Igor
I have replaced the code but the category main headings are not sorted please guide me thanks.