Jump to content

Category sorting?


Recommended Posts

  • 1 month later...

I solved this problem by changing the code in modul blockcategories.

in mine it´s row 107:

ORDER BY cl.id_category '); sorting by id (I have no subcategories)
ORDER BY cl.name ASC '); sorting by name

if you first want to see categories with subcategories and afterwards thd name, simply add level_depth as follows:
ORDER BY level_depth, cl.name ASC ');

Origin: ORDER BY level_depth, cl.name ASC ');

Good Luck

Link to comment
Share on other sites

  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...