• Resolved hyang02

    (@hyang02)


    Hi,

    I’m trying to sort my events in alphabetical order with the main featured event being first. Is there a way to achieve this?

    Right now, it’s sorted by time/date.

    THANKS!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there,

    Thanks for reaching out ??

    Here’s a snippet you can try in your child theme’s functions.php file:

    add_filter( 'pre_get_posts', 'tribe_change_event_order', 99 );
    function tribe_change_event_order( $query ) {
    if ( tribe_is_past() || tribe_is_upcoming() || tribe_is_photo() ) {
    $query->set( 'orderby', 'title' );
    $query->set( 'order', 'ASC' );
    }
    return $query;
    }

    Hope that helps!

    Have a great day,
    Ed ??

    Hey there,

    Since this topic has been inactive for a while, I’m going to go ahead and mark as resolved. Don’t hesitate to reopen or create a new topic if you still need help! ??

    Take care,
    Ed ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Event Sorting’ is closed to new replies.