Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1311416

    i have one date field.
    all is correct only in the email the date has “double” value
    Datum: 23.07.20212021
    correct is Datum: 23.07.2021
    newest enfold version.

    #1311920

    found the error.
    i have german date format in child overriden
    with

    
    add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
    function new_date_placeholder() {
    $placeholder = "dd.mm.yyyy";
    return $placeholder;
    }
    add_filter('avf_datepicker_dateformat', 'new_date_format');
    function new_date_format() {
    $date_format = "dd.mm.yyyy";
    return $date_format;
    }
    

    but correct is

    
     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;
    }
    
    #1312006

    Hi,

    Great, I’m glad that you found the problem, and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1312007

    Hi,

    Great, I’m glad that you found the problem, and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1312027

    close it

    #1312028

    but llok at my other topic

    #1312640

    Hi,

    We replied to the other thread. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘bug in form’ is closed to new replies.