Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1178648

    hi there, the datepicker is not working, was there any change?

    wp: newest
    enfold: newest
    chrome: newest

    example: https://kriesi.at/themes/enfold-restaurant/reservations/

    i already read this thread:
    https://kriesi.at/support/topic/datepicker-in-contact-form-not-working/

    but did not working for me

    thx in advanced :-)

    #1179181

    Hey Ramon,

    Please have a look at the following thread:

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1179339

    Hey victoria, thx for the info. looking forward to the next update :-)

    on most of my sites the datepicker works now after disabling the jQuery load into footer.

    but on this site (look below)

    it does not.

    AND the megamenu is broken only on the site with the datepicker

    #1179596

    Hi volmering,

    Please deactivate all plugins one by one to check which one is causing this issue and let us know if this solves the problem.

    https://kriesi.at/support/topic/uncaught-referenceerror-aviadatepickertranslation-is-not-defined/

    Best regards,
    Victoria

    #1179614

    hey victoria,

    disabled all plugins at once. no effect.

    but as i disabled “events manager” alone the datepicker worked as it should.

    already posted it in the em-pro forum.

    thx for the tip :-)

    last question about the datepicker victoria:

    how can i change the default “DD / MM / YY” in the frontend to “TT / MM / JJJJ” (german sites)

    the php snippets for the functions.php in the forums are not woking anymore

    #1179967

    Hi volmering,

    Can you share the snippets that you tried? They should be working.

    Please, let us know on the progress with the em-pro forum.

    Best regards,
    Victoria

    #1179977

    hey victoria,

    thx. ill do.

    i tried now only the placeholder:

    add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
    function new_date_placeholder() {
    $placeholder = "TT / MM / JJJJ";
    return $placeholder;
    }

    worked

    #1179992

    Hi,

    Please add following code to bottom of Functions.php file as well

    add_filter('avf_datepicker_dateformat', 'new_date_format');
    function new_date_format() {
    $date_format = " dd / mm / yyyy";
    return $date_format;
    }

    Best regards,
    Yigit

    #1180000

    hey yigit,

    thx for help :-). is it nesssary? because i tried this one:

    add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
    function new_date_placeholder() {
    $placeholder = "bitte wählen";
    return $placeholder;
    }

    and it works like a charm :-) link below

    #1180079

    Hi,

    Filter you used is for placeholder and the one i posted it to change date format. If you say it works like a charm, it is definitely not necessary. If it is not broken, why fix it, right? :)

    Shall we mark this thread as resolved then? :)

    Best regards,
    Yigit

    #1180092

    hey yigit, thx to you and victoria.

    this can be closed

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Datepicker not working’ is closed to new replies.