Concrete5.6.4.0 changing date format

I know I am on a legacy version by I really need to change the date option in the form block to european format (d,m,Y). Any ideas please? Languages under System & Settings tells me I have no languages installed.

In your config/site.php file try adding these two lines of code

define('DATE_APP_GENERIC_MDY', 'j M Y');
define('CUSTOM_DATE_APP_GENERIC_MDY', 'j M Y');

2 Likes

Thanks. I changed it to d m Y and is perfect!