Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Version 2.6.8, “Fixed broken pages after updating to WordPress 5.5”, seems to have fixed this issue! Well, quite fast, thanks!

    I have the same issue. When opening a calendar in month view, multi-day events are shown on the first day only. Changing the month by switching forth and back brings up the correct display, although only when “Frontend rendering” is selected in the settings. The issue has been reproduced on Firefox, Chrome and Edge browsers.

    This behaviour is similar to an issue fixed in Version 2.6.7 “Some calendars wouldn’t show the current date when using month view”. There too, the error showed up only on the initial calendar (month) display, and disappeared when switching to another month and back.

    See https://ssvcham-ennetsee.ch/calendar/

    The current day is not displayed. It seems to depend on the sequence of updates applied to themes and plugins.
    Workaround:
    In file
    wordpress4\wp-content\plugins\all-in-one-event-calendar\app\view\calendar\view\month.php

    insert “&& false” to suppress special handling of today, see below:

    $weeks[$week][] = array(
    ‘date’ => $i,
    ‘date_link’ => $this->_create_link_for_day_view( $exact_date ),
    ‘today’ =>
    $timestamp->format( ‘Y’ ) == $today->format( ‘Y’ ) &&
    $timestamp->format( ‘m’ ) == $today->format( ‘m’ ) &&
    $i == $today->format( ‘j’ ) && false,
    ‘events’ => $events,

    );

    The current day will then be displayed correctly, but not highlighted.

Viewing 3 replies - 1 through 3 (of 3 total)