• When using this plugin Date pickers format the output incorrectly ignoring the settings of the field by other plugins.

    From testing, changing the following code in the plugin fixes the problem without affecting the functionality.

    Line 494:

    wp_enqueue_script(
    ‘datepicker’,
    plugins_url( ‘/’, FILE ) . ‘assets/js/bootstrap-datepicker.min.js’,
    array( ‘jquery’ ),
    ‘1.9.0’,
    true
    );

    Changing this to

    Line 494:

    wp_enqueue_script(
    ‘datepicker’,
    plugins_url( ‘/’, FILE ) . ‘assets/js/bootstrap-datepicker.min.js’,
    array( ‘jquery’ ),
    ‘1.9.0’,
    false
    );

    By making this change, it fixes the issue. Can this please be pushed out in the next update?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Issue with Date Picker’ is closed to new replies.