Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    That works. Thank you very much! Although I would appreciate some feedback from the developers what happened!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘in overview of june, 2. of june is missing’ is closed to new replies.