Well…better late than never right?
For anyone who’s having the same problem I did, I figured out how to fix this problem. Hope this helps the folks that still need it…
The plugin ignores the timezone you set in your wordpress configuration. Instead, it looks at the timezone of the database WP is installed on. Figure out what that timezone is. Then figure out how many seconds that is… in my case it was 4 hours * 60 minutes * 60 seconds = 14400 seconds
Now go into settings…
Edit the plugin code.
Find the line below.
echo date_i18n('F jS', $event["start_time"]-14400);
But where I entered -14400 you should enter in the negative of the number of seconds you found above.
Click save, you should be good to go.
Goodluck!
-Jager