Twincam
Member
Hi All
I have changed orderByDate in Finder Mediaitem.php as follows because this is the only sequence we want. All looked fine. I have now spotted an issue with the thumbnail slider that comes up when you are looking at an image within a category. It looks like that isn't following the same sequence? Is there another place where the sequence of Media Items is set?
Thanks
public function orderByDate($order = 'rating_sum', $direction = 'DESC')
{
$this->setDefaultOrder([
['rating_sum', 'DESC'],
['title', 'ASC'],
['media_date', 'DESC']
]);
return $this;
}
I have changed orderByDate in Finder Mediaitem.php as follows because this is the only sequence we want. All looked fine. I have now spotted an issue with the thumbnail slider that comes up when you are looking at an image within a category. It looks like that isn't following the same sequence? Is there another place where the sequence of Media Items is set?
Thanks
public function orderByDate($order = 'rating_sum', $direction = 'DESC')
{
$this->setDefaultOrder([
['rating_sum', 'DESC'],
['title', 'ASC'],
['media_date', 'DESC']
]);
return $this;
}