How to fix this:
Site admin>plugins>plugin editor>ics calendar> ics-importer.php
add “putenv(“TZ=America/New_York”);” right after the FIRST */
for example mine is
<?php
/*
Plugin Name: ICS Calendar
Version: v1.1.8
Author: Daniel Olfelt
Description: A plugin for importing ICS files from Google or iCal into a blog page as an event list or calendar.
*/
putenv(“TZ=America/New_York”);
ini_set(‘display_errors’, 1); // FOR DEBUGING ONLY
require_once(‘import_ical.php’);
//require_once(‘ical_parse.php’);
require_once(‘ics-functions.php’);
require_once(‘cal-functions.php’);
find your time zone here
https://www.theprojects.org/dev/zone.txt
yup that’s it and is super stupid that time zone is not a built in option. bye.