Change order of events

Home Forums Calendar Products Events Calendar PRO Change order of events

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1246055
    Mario
    Participant

    Hello

    I would like to change the order of my events. http://vfg.ch/agenda-2/
    Is it possible to display the newest / latest events first? Just the opposite as it is right now.

    Best regards and thanks
    Mario

    #1247094
    Courtney
    Member

    Hi Mario

    To change the sorting order to descending, you’ll need to add the following code to site.

    https://gist.github.com/geoffgraham/39d59bf67175e9b93bda

    You can add this to your child theme‘s functions.php file, or with a plugin.

    Please let me know if this helps.

    Thanks! 🙂

    Courtney

    #1247113
    Mario
    Participant

    Hello Courtney

    It works, but unfortunately only in the list view. It doesn’t work in the photo view (http://vfg.ch/agenda-2/?tribe_event_display=photo)
    Do you have a code for this display setting as well?

    Many thanks in advance
    Mario

    #1247596
    Courtney
    Member

    Try this instead:


    // Changes listed event views to reverse chronological order
    function tribe_past_reverse_chronological ($post_object) {
    $past_ajax = (defined( 'DOING_AJAX' ) && DOING_AJAX && $_REQUEST['tribe_event_display'] === 'upcoming') ? true : false;
    if(tribe_is_past() || tribe_is_photo() || tribe_is_upcoming() || $past_ajax) {
    $post_object = array_reverse($post_object);
    }
    return $post_object;
    }
    add_filter('the_posts', 'tribe_past_reverse_chronological', 100);

    And let me know how it goes.

    Thanks again
    Courtney

    #1258731
    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 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change order of events’ is closed to new replies.