• Resolved thewebtailors

    (@thewebtailors)


    I enabled the block editor for the events pages by adding
    define( 'EM_GUTENBERG', true);
    to my wp-config.php file.

    However, the datepicker does not show up. Turns out, it has a too low z-index.

    The following code fixed it for me:

    //events manager block editor datepicker fix
    add_action('admin_footer', function() {
    	$screen = get_current_screen();
    	if ( is_object( $screen ) && in_array( $screen->post_type, array( 'event', 'event-recurring' ) ) ) {
    		?>
    <style>
    #ui-datepicker-div {
    	z-index:99 !important;
    }
    </style>
    <?php
    	}
    });

    Please fix in the next release.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    I get this too, I’ve let the devs know about it. should get fixed soon.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    hi, just to let you know currently we don’t support Gutenberg just yet. It did work in early development stages of the add-on, by the time it was released it didn’t.

    We’ll be concentrating on Gutenberg integration in the very near future.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Block Editor Datepicker Not Showing’ is closed to new replies.