Support

Account

Home Forums Bug Reports Date Picker fields in Repeaters gone wrong after WP 5.3 update Reply To: Date Picker fields in Repeaters gone wrong after WP 5.3 update

  • P.S. for a quick albeit unelegant fix, you can restore the timezone to UTC AFTER you do your stuff with your functions that use your specific timezone. So that’ll be

    date_default_timezone_set( get_option(‘timezone_string’) );

    …do your stuff…

    date_default_timezone_set(‘UTC’);