Hello,
I have a DT register 4.2.8 and I'm investigating in detail which is the ordering criteria of the listing events page.
In list.php I saw this code:
$ordering = "b.ordering ASC";
$groupby = " group by b.slabId ";
if($eventListOrder == 3) {
$ordering = " c.lft asc, b.ordering ASC ";
$groupby = " group by c.categoryId , b.slabId ";
}
I would need to order the events for date as primary ordering and category as second ordering; so something like ORDER BY date, category ASC; where do I have to change the code?