• When I add some events with different dates, the events will not show up in chronological order on the events page. The events are just ordered in the order they were added. The Events Manager settings don’t give me any option for this. Does anyone know how I can make the events show in order of startdate on the events page?

    (I use this plugin with the Studiare theme).

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter tiezkoz

    (@tiezkoz)

    I managed to fix this by changing the publish date of the event. Very strange behavior of the plugin. It always should order by event date and never by publish date. I hope this bug will be fixed very soon.

    $args2 = array (‘post_type’ => ‘tribe_events’, ‘posts_per_page’ => 3,’orderby’=>’tribe_get_start_date’);

    Thread Starter tiezkoz

    (@tiezkoz)

    Thanks, where should I put this in the code?

    wearenerdish

    (@wearenerdish)

    I’m having that same problem, sorting all per start date would be easiest.
    Especially when you have many events made but not in order of starting dates>

    Since I assume that code would solve the issue, but I havent seen a reply further solving it.
    where do you need to add that bit of code?

    Thank you in advance!

    amalksuresh

    (@amalksuresh)

    $args1 = array( ‘post_type’ => ‘tribe_events’, ‘posts_per_page’ => -1, ‘orderby’ => ‘title’, ‘order’ => ‘ASC’);
    query_posts( $args1 );
    while ( have_posts() ) : the_post();
    the_title();
    endwhile;

    Thread Starter tiezkoz

    (@tiezkoz)

    Hi @amalksuresh, what is the filename where we can add this code to?

    amalksuresh

    (@amalksuresh)

    Code can be added in ur page template where u need to do the process.In my case its a part of footer where recent event should be listed.Use the code in ur page template.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Ordering events in order of date’ is closed to new replies.