Dear Support-Team
can i somehow change the Datenformat on my Form?
From “DD / MM / YY” into the german format like “DD . MM . YY”
Here is my Page on how it is now:
Hey Thorsten,
If possible, please provide admin info so we can login and look into this issue further. This should be possible with an edit to functions.php.
Best regards,
Jordan Shannon
Here they are:
Hi,
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 = "DD . MM . YY";
return $placeholder;
}
add_filter('avf_datepicker_dateformat', 'new_date_format');
function new_date_format() {
$date_format = " dd . mm . yy";
return $date_format;
}
Best regards,
Yigit
COOOOOL!!!
It#s working ;-)
Thanx a lot!!!
Could you please add it to the Theme as well?
Because this solution should just be a Work-A-round?!
Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Best regards,
Yigit