• Wondering if anyone else is experiencing:

    When a single occurrence of a repeating event is edited (location or description), a duplicate is added to the calendar and list. I end up with two events with the same title, one with the edits.

    On top of that, in the calendar view, when hovering, only the info from the original occurrence of the repeating event displays. I end up with two events with the same title and neither displays the correct info.

    I’m originating in iCal, publishing to iCalX server (where the edits don;t seem to be a problem) and subscribing using ICS Calendar v1.1.8.

    This plugin has a lot of potential but it seems like the author may have dropped support for it. The most recent posts are four months old.

    Thanks for any thoughts!

Viewing 1 replies (of 1 total)
  • For duplicate events, in v1.2.10 I had to add the following as this was occurring because of timezone difference on server:

    At line 146 of import_ical.php add:

    else if (preg_match("/^TZID[^:]*:(.+)$/i", $buff, $match)) {
        date_default_timezone_set($match[1]);
    }

    To be sure the current date information is displaying when you mouse over the event, I appended the date to each event’s popup:

    Change line 135 of cal-functions.php to:

    $calContent .= '<div class="ics-calendar-event-box" id="'.$eventUID.'-'.$eventsKey.'"'.$showBoxNow.'>';

    Change line 164 of cal-functions.php to:

    $calContent .= '<div class="ics-calendar-event" icstag="'.$eventUID.'-'.$eventsKey.'">';

    Hope this helps

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: ICS Calendar] dupes in repeating events & hover issues’ is closed to new replies.