In admin you should have the file "includes/extra_configures/use_catalog_time_zone.php" which has one active line
Code:
include (DIR_FS_CATALOG . '/includes/extra_configures/set_time_zone.php');
In the catalog you should have the file "includes/extra_configures/set_time_zone.php" which will have the first active line as
Code:
$TZ = 'Australia/Brisbane';
In language definitions for your template eg in "\includes\languages\english\extra_definitions\bmh_bootstrap_377" you should have a "lang.english.php" file for any overides of default language definitions. So I have
Code:
global $locales;
$locales = ['en_AU', 'en_AU.utf8mb4', 'en', 'English_Australia.1252'];
@setlocale(LC_TIME, $locales);
$define = [
'DATE_FORMAT' => 'd/m/Y', //
'DATE_FORMAT_LONG' => '%A %d %B, %Y', //
'DOB_FORMAT_STRING' => 'dd/mm/yyyy', //
'ENTRY_DATE_OF_BIRTH_ERROR' => 'Is your birth date correct? Our system requires the date in this format: DD/MM/YYYY (eg 21/05/1970) or this format: YYYY-MM-DD (eg 1970-05-21)', //
'ENTRY_DATE_OF_BIRTH_TEXT' => '* (eg. 21/05/1970 or 1970-05-21)', //
'LANGUAGE_CURRENCY' => 'AUD', // BMH
(this is only a part of the file contents)