Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #818554

    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:

    #818577

    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

    #818719

    Here they are:

    #818723

    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

    #818729

    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?!

    • This reply was modified 7 years, 4 months ago by mandelkind.
    #818733

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Dateformat within the DatePicker from my Form?’ is closed to new replies.