SP Easy Image Gallery Sort Albums By ID - Question | JoomShaper

SP Easy Image Gallery Sort Albums By ID

P

Pedros

Extension 2 months ago

How can I sort albums by ID or creation date so that the first ones are the newest ones?

0
1 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 2 months ago #147657

Hello Pedros

Please go to this file:

components/com_speasyimagegallery/models/albums.php

and on line 61, change it to

$query->order('a.id DESC');

It will show the albums by ID from latest to oldest.

or change it to

$query->order('a.created DESC');

It will show the albums by Created Date from latest to oldest.

Best regards

0