Page 1 of 1

How to display latest uploaded products first in all categories .

Posted: Wed Feb 20, 2019 1:29 am
by niranjan528
Can anyone tell me how to change the display order on the category page? My products are being displayed in reverse chronological order (oldest products first) and I would like newest products to display first. I have read several posts but cannot find a good answer. I'm sure it's something simple but I cannot figure it out.

Any help is greatly appreciated.

Re: How to display latest uploaded products first in all categories .

Posted: Wed Feb 20, 2019 3:31 am
by cyclops12
Have you searched the marketplace??
https://www.opencart.com/index.php?rout ... load_id=47

Re: How to display latest uploaded products first in all categories .

Posted: Wed Feb 20, 2019 6:57 am
by niranjan528
I don't want sort by in filter section, I want only when I open category page defaultly latest uploaded products will come first. I want this one only. Please help on this. I tried but not working any solution.

Re: How to display latest uploaded products first in all categories .

Posted: Mon Feb 25, 2019 7:52 pm
by xxvirusxx
Check catalog/controller/product/category.php

Re: How to display latest uploaded products first in all categories .

Posted: Wed Feb 27, 2019 3:35 am
by selmark.advertising
catalog/controller/product/category.php
Replace

Code: Select all

$order = 'DESC';
With

Code: Select all

$order = 'ASC';
You should check your theme if there's a need to change the default sort order from descending to ascending.