10/23/2014 at 11:56 am
#307917
Keymaster
@ Chris
No, you’re not missing anything, but it seems I am. I do not seem to be enqueuing the required CSS for the date picker. I didn’t catch this bug because it was being enqueued elsewhere. I’ve corrected this for the upcoming 8.1.6 bugfix release.
As a temporary fix, you can install the Code Snippets plugin and add a new snippet with the following code:
function cn_enqueue_jquery_ui_datepicker_css() {
$min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_style( 'cn-public-jquery-ui', CN_URL . "assets/css/jquery-ui-fresh$min.css", array( 'cn-public' ), CN_CURRENT_VERSION );
}
add_action( 'wp_enqueue_scripts', 'cn_enqueue_jquery_ui_datepicker_css' );
That should fix it. Apologies for the trouble!
