@ Mike
The theme is doing something bad too, this code in the functions.php file:
function inkthemes_add_stylesheet() {
if (!is_admin()) {
if(inkthemes_get_option('inkthemes_altstylesheet')!='orange'){
wp_enqueue_style('coloroptions', get_template_directory_uri() . "/css/color/" . inkthemes_get_option('inkthemes_altstylesheet') . ".css", '', '', 'all');
}
if(inkthemes_get_option('inkthemes_lanstylesheet') != 'Default'){
wp_enqueue_style('rtloptions', get_template_directory_uri() . "/css/color/" . inkthemes_get_option('inkthemes_lanstylesheet') . ".css", '', '', 'all');
}
}
wp_enqueue_style('short_codes', get_template_directory_uri() . "/css/shortcode.css", '', '', 'all');
wp_enqueue_style('Pretty_photo', get_template_directory_uri() . "/css/prettyPhoto.css", '', '', 'all');
}
add_action('init', 'inkthemes_add_stylesheet');
Load these CSS files on every page, frontend and admin. It is solely responsible for making much of you admin not look correct. You should ask your theme dev to fix this bug.
Now back to the issue…
You can not select a time because of the Tribulant Newsletters plugin… it is also loading it scripts and CSS throughout the admin which it should not do.
It is loading an incompatible version of the datepicker script. Actually even worse is that they are enqueueing a version of the datepicker that comes with their plugin rather than the version that comes with WordPress. They really should be including the version that comes with WordPress. Well, it would not be so bad if they would enqueue it on only their admin pages. But the way it is now, any other plugin that uses the datepicker script will likely be broken due to this.
Unfortunately this is not something I can fix, you’ll have to contact them and ask them to fix it. Sorry.
Hope this helps!
