Event ordering in page

Home Forums Calendar Products Events Calendar PRO Event ordering in page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #300815
    lucianodevenezia
    Participant

    A stupid question: how to order event in page?? In my event page they appear from oldest to newiest, how can I invert order (first recent event)?? Am I so stupid?? I hope the answer is not yes! 🙂

    #314347

    Hi!

    Sorry it took so long to get back to you. I am doing some follow-up with teammates and the information found in the following support thread should be similar to what you are looking for but instead of ‘day’ it should use ‘list’. I haven’t confirmed if this causes next/previous buttons to have issue.

    I’m going to run some tests on this tomorrow and will get back to you with my findings.

    Again sorry for the delay and thank you for taking the time to reach out to us.

    – Matthew

    #352294

    Hi:

    I ran some tests using the following code snippet.

    add_action( 'pre_get_posts', 'fix_day_view_order', 100 );
    function fix_day_view_order( WP_Query $query ) {
    if ( 'upcoming' !== $query->get( 'eventDisplay' ) ) return;
    $query->set( 'order', 'DESC' );
    }

    And the sort answer is that re-ordering the posts using this method will cause you to see the last event that has been published in the system instead of the events starting from today. Can you confirm that you want to have the Upcoming “list” events displayed starting with event further in future at top than closest to today at bottom of the screen?

    Thanks for your patience with this.

    – Matthew

    #580170

    Hi, I wanted to quickly follow-up with you to see if you are all set or if you have further questions. Please let me know if you do have additional questions I can assist with or if I should go ahead and close this thread.

    Thank you,

    – Matthew

    #580178

    Hi, I wanted to quickly follow-up with you to see if you are all set or if you have further questions. Please let me know if you do have additional questions I can assist with or if I should go ahead and close this thread.

    Thank you,

    – Matthew

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Event ordering in page’ is closed to new replies.