Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    I’ve reported this as a Bug on EM. Hopefully it will be fixed on the next release.

    You could however use this small snippet to display the timezone: Place the code on your theme’s functions.php. Then you can use the placeholde #_EVENTTIMEZONE to display timezone

    add_filter( 'em_event_output_placeholder', 'em_display_timezone_custom_placeholder', 1, 3 );
    function em_display_timezone_custom_placeholder( $replace, $EM_Event, $result ){
        if( $result == '#_EVENTTIMEZONE' ){
    		if( isset( $EM_Event->event_timezone ) ) {
    			$replace = $EM_Event->event_timezone;
    		}
        }
        return $replace;
    }
    Thread Starter squinx

    (@squinx)

    Thank you timrv!

    Any way to show something like Eastern Daylight Time vs America/New_York?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Time Zone doesn’t update’ is closed to new replies.