Viewing 6 replies - 1 through 6 (of 6 total)
  • Same here.
    Calendar view shows wrong time,

    briankeith68 it’s in UTC-4 timezone and times appears wrong by 4 hours.

    I’m in UTC+2 an time is wrong by 2 hours.

    I have same problem.
    Anyone figure out a fix yet?

    It looks like the graphical calendar (fullcalendar) has some sort of problem with timezones. The dates are all stored properly, but the timezone info seems to get dropped when the dates are passed to fullcalendar. I can’t figure out if the bug is in wp calendar or fullcalendar. Thoughts? Anyone been able to fix this? This is a pretty serious bug for me.

    Plugin Author faebu

    (@faebu)

    i cannot reproduce this error. could somebody change the following lines in fsCalendar.php (~Line 295):

    $e[‘start’] = $evt->tsfrom; //date_i18n(‘c’, $evt->tsfrom);
    $e[‘end’] = $evt->tsto; //date_i18n(‘c’, $evt->tsto);

    with

    $e[‘start’] = date(‘c’, $evt->tsfrom);
    $e[‘end’] = date(‘c’, $evt->tsto);

    and report if this solves the problem? Make sure u have php5!

    Thanks!

    Thanks faebu! That solved the problem! You are a life saver!

    Plugin Author faebu

    (@faebu)

    great! i just released V1.1.2 with a patch for this issue!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: WP Calendar] {events_calendar} time behind 4 hours’ is closed to new replies.