How to sort the filters in the filter bar alphabetically

Home Forums Calendar Products Filter Bar How to sort the filters in the filter bar alphabetically

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1322342
    Alexander
    Participant

    Hello,

    My filter in the filter bar are not sorted alphabetically. See the screenshot

    How can I sort my filters from the filter bar alphabetically ??

    Thanks,
    Alexander

    #1322992
    Victor
    Keymaster

    Hi Alexander!

    Let me help you with that!

    Try placing the following code snippet into your theme’s functions.php file:

    /*
    * The Events Calendar - Change filter values order
    */
    add_filter( 'tribe_events_filter_values', 'tribe_re_order_filter_categories', 10, 2 );
    
    function tribe_re_order_filter_categories ( $values , $slug ){
    
    if ( $slug == '_ecp_custom_2' ) {
    sort($values); // a-z
    //rsort($values); // z-a
    }
    
    return $values;
    }
    

    Will it work for you? Let me know about it.

    Best,
    Victor

    #1332898
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to sort the filters in the filter bar alphabetically’ is closed to new replies.