Title: Time Zone doesn&#8217;t update
Last modified: June 1, 2018

---

# Time Zone doesn’t update

 *  Resolved [squinx](https://wordpress.org/support/users/squinx/)
 * (@squinx)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/time-zone-doesnt-update/)
 * Hi there,
 * I must be missing something – we can’t seem to get the timezone to show correctly.
 * Ideally, using the #_EVENTTIMES placeholder, I would like to show the time and
   timezone for the event area, using g:i a T. It will only show the default WP 
   EDT.
    Timezone support is set to Yes in Settings.
 * I have tried – re-saving settings, Clearing cache for site and browser, Setting
   the Timezone within the event itself, setting timezone directly in the Database.
 * I also tried to use #_12HSTARTTIME – #_12HENDTIME but since there is no timezone
   setting that does not work for us.
 * [http://heartofthehealer.org/events/full-moon-drumming-and-shamanic-journeying-albany-ca/](http://heartofthehealer.org/events/full-moon-drumming-and-shamanic-journeying-albany-ca/)
 * Any advice is helpful, thanks in advance!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftime-zone-doesnt-update%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/time-zone-doesnt-update/#post-10362002)
 * Hello,
 * I’ve reported this as a Bug on EM. Hopefully it will be fixed on the next release.
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/time-zone-doesnt-update/#post-10362078)
 * 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](https://wordpress.org/support/users/squinx/)
 * (@squinx)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/time-zone-doesnt-update/#post-10376365)
 * 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.

 * ![](https://ps.w.org/events-manager/assets/icon-256x256.png?rev=1039078)
 * [Events Manager - Calendar, Bookings, Tickets, and more!](https://wordpress.org/plugins/events-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/events-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/events-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/events-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/events-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/events-manager/reviews/)

## Tags

 * [time zone](https://wordpress.org/support/topic-tag/time-zone/)
 * [timezone](https://wordpress.org/support/topic-tag/timezone/)

 * 3 replies
 * 2 participants
 * Last reply from: [squinx](https://wordpress.org/support/users/squinx/)
 * Last activity: [7 years, 11 months ago](https://wordpress.org/support/topic/time-zone-doesnt-update/#post-10376365)
 * Status: resolved