Quote Originally Posted by Annie_zaz View Post
...
I have made the changes to includes/languages/custom/english.php and also to admin/includes/languages/english.php
...
Did you make these changes:

PHP Code:
 
  
@setlocale(LC_TIME'en_AU.UTF-8'); 
  
define('DATE_FORMAT_SHORT''%d/%m/%Y');  // this is used for strftime() 
  
define('DATE_FORMAT_LONG''%A %d %B %Y'); // this is used for strftime() 
  
define('DATE_FORMAT''d/m/Y'); // this is used for date() 
  
define('DATE_TIME_FORMAT'DATE_FORMAT_SHORT ' %H:%M:%S'); 
 
//// 
// Return date in raw format 
// $date should be in format mm/dd/yyyy 
// raw date is in format YYYYMMDD, or DDMMYYYY 
  
if (!function_exists('zen_date_raw')) { 
    function 
zen_date_raw($date$reverse false) { 
      if (
$reverse) { 
        return 
substr($date02) . substr($date32) . substr($date64); 
      } else { 
        return 
substr($date64) . substr($date32) . substr($date02); 
      } 
    } 
  } 
Above code reflects the settings in my (Aussie) stores.