Jump to content

Order of product : New then position in category


viveff

Recommended Posts

Hello everyone,

 

I would like to change the order of the product in category page, but not like in the BO.

 

I would like first, all the new product, THEN the position of the product in BO.

 

Do you know how could I make it ?

 

Thanks you,

Link to comment
Share on other sites

You will need to change the SQL query in method getProducts() in Category class or its override class.

 

/classes/Category.php

 

or (recommended)

/override/classes/Category.php

 

 

Change the ORDER BY portion to following

ORDR BY p.date_upd DESC, cp.position asc
Edited by shokinro (see edit history)
Link to comment
Share on other sites

Are you using block layered module?

If you use that module, then the getProducts() method was hijacked by that module. The product list is generated inside that module, you will need go modify related code in that module.

  • Like 1
Link to comment
Share on other sites

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...