Post by Larry Backstrom on Feb 12, 2023 10:44 PM My users don’t know how to set their Timezone in UTC offset in “Preferences” tab. If they do know, do they choose Standard or Daylight Saving? I made it simple for them by filtering the options by only showing the timezones where most of my users are located and only in Standard time. If a user is not located in my predefined timezone list, they can choose the default or timezone AoE (yes, it is a real timezone). For a list of timezones, you can visit Timezone List. Here is my filter below. Use it by placing this filter into your functions.php “Child” theme. Modify it based on your user’s locations. ย function readable_utc($options_gmt) { $named_utc = array( 0 => ‘UTC/GMT – Greenwich Mean Time (Default)’, -12 => ‘AoE – Anywhere on Earth’, -10 => ‘HST – Hawaii Standard Time’, -9 => ‘AKST – Alaska Standard Time’, -8 => ‘PST – Pacific Standard Time’, -7 => ‘MST – Mountain Standard Time’, -6 => ‘CST – Central Standard Time’, -5 => ‘EST – Eastern Standard Time’, -4 => ‘AST – Atlantic Standard Time’, -3.5=> ‘NST – Newfoundland Standard Time’, 1 => ‘ECT – European Central Time’, 2 => ‘EET – Eastern European Time’, 3 => ‘MSK – Moscow Standard Time’, 8 => ‘AWS – Australia Western Time’, 9 => ‘JST – Japan, Korea Standard Time’, 9.5 => ‘ACT – Australia Central Time’, 10 => ‘AET – Australia Eastern Time’, 11 => ‘NCT – New Caledonia Time’, 12 => ‘NST – New Zealand Standard Time’ ); return $named_utc; } add_filter(‘peepso_options_gmt’, ‘readable_utc’, 99, 1);