datepicker-style
-
in settings.php, the line 2036 enqueue an old jquery-ui.css file :
wp_enqueue_style(‘datepicker-style’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css’);
This file double the jquery-ui file loaded by wp.
Could you modify the plugin in order to load the same version of jquery-ui of wordpress and rather to use ‘datepicker-style’ as file name use ‘jquery-ui’ file name.
So replace :
wp_enqueue_style(‘datepicker-style’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css’);by:
wp_enqueue_style(‘jquery-ui’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css’);
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘datepicker-style’ is closed to new replies.