How can change business hour?

This topic contains 10 replies, has 5 voices, and was last updated by  Myeunguk Jo 5 years ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #481898

    Myeunguk Jo
    Free User
    Post count: 5

    Hello GD developer,

    I have a problem with Business hour function.

    I can’t setting the hour / it’s closed (when I clicked, Nothing happend) how can change openning time?

    see the screenshot

    Always thanks!

    #481905

    Guust
    Moderator
    Post count: 29970

    Please post your WP admin details and URL in a private reply and we will have a look.

    Thanks

    #481910

    Myeunguk Jo
    Free User
    Post count: 5
    This reply has been marked as private.
    #481927

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    #481933

    Myeunguk Jo
    Free User
    Post count: 5
    This reply has been marked as private.
    #481934

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    #481935

    Myeunguk Jo
    Free User
    Post count: 5

    Yeah I worte right Username & password

    you can login to my site’s FTP with Filezillar program

    Did I get it wrong?

    #481950

    Kor
    Moderator
    Post count: 16516
    This reply has been marked as private.
    #481962

    Myeunguk Jo
    Free User
    Post count: 5
    This reply has been marked as private.
    #482092

    Kiran
    Moderator
    Post count: 7069

    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

    #482098

    Myeunguk Jo
    Free User
    Post count: 5

    It’s working right!!

    Thank you!! Have a nice day~!

Viewing 11 posts - 1 through 11 (of 11 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket