Events times all over the place in day view

Home Forums Calendar Products Events Calendar PRO Events times all over the place in day view

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #205940
    Ben
    Participant

    The events are usually in time order in day view but at the moment they are going from all day events, to pm events to am events and then some pm events randomly at the bottom! Any ideas? Need to get this sorted asap!

    #208976
    Barry
    Member

    Sorry for the inconvenience, Ben – there does seem to be a bug here. Can you try adding the following snippet to your theme’s functions.php file as a workaround:

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

    Does that help/at least provide some temporary relief? We’ll certainly aim to get a substantive fix out as quickly as possible.

    #434048
    Leah
    Member

    Hi there,

    I just wanted to drop in and update you on the status of this issue. We are working on the upcoming 3.7 release and are happy to say that a fix for this issue will be included. Please keep an eye on your Updates and Plugins pages for an update prompt. If you have any trouble or continue to see this issue after updating, please start a new thread and we can assist you from there. Thank you for your patience while we worked on this issue.

    Best,
    Leah

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Events times all over the place in day view’ is closed to new replies.