Comment to 'Sorting of Featured Events block'
  • Hello @george1 !

    Well, the AI didn't "hit target" this time, only "straddled". You may try to do the next variant:

    In the modules/boonex/events/classes/BxEventsSearchResult.php file you need to find the following code:

    case 'featured':

          return array('order' => ' ORDER BY `bx_events_data`.`featured` DESC ');

    and change it to the:

    case 'featured':

          return array('order' => ' ORDER BY `bx_events_data`.`published` DESC, `bx_events_data`.`featured` DESC');