This is a simple way how to change the events order by newest date.
Go to /components/com_eventlist/models and open categoryevents.php
Find line:
1 |
$this->setState('filter_order_dir', JRequest::getWord('filter_order_Dir', 'ASC')); |
and change it to:
1 |
$this->setState('filter_order_dir', JRequest::getWord('filter_order_Dir', 'DESC')); |