Hi guys,
How to change dates display from European (DD/MM/YY) to American (MM/DD/YY) in the calendar?
Thanks
Hey Antonio,
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
function new_date_placeholder() {
$placeholder = "MM / DD / YY";
return $placeholder;
}
add_filter('avf_datepicker_dateformat', 'new_date_format');
function new_date_format() {
$date_format = " mm / dd / yy";
return $date_format;
}
Best regards,
Yigit
Thanks Yigit!