Hello,
There was a jQuery Timepicker conflict with KBoard plugin.
I have added following code snippet in your child theme functions.php to prevent conflict.
/**
* Fix jQuery timepicker with KBoard : 게시판 plugin.
*/
function gd_snippet_220417_kboard_conflict() {
global $pagenow;
if ( defined( 'KBOARD_VERSION' ) && ( 'edit.php' === $pagenow || 'post.php' === $pagenow || 'post-new.php' == $pagenow ) && wp_script_is( 'geodir-jquery-ui-timepicker', 'enqueued' ) && wp_script_is( 'jquery-timepicker', 'enqueued' ) ) {
$screen = get_current_screen();
$screen_id = $screen ? $screen->id : '';
if ( in_array( $screen_id, geodir_get_screen_ids() ) ) {
wp_dequeue_script( 'jquery-timepicker' );
wp_dequeue_style( 'jquery-timepicker' );
}
}
}
add_action( 'admin_enqueue_scripts', 'gd_snippet_220417_kboard_conflict', 9999 ); // Backend pages
Let us know.
Regards,
Kiran