• Regarding the location of Gutenberg,

    In Gutenberg, the settings section of the store details once appeared under the content area. This part is created by the plug-in WP Store Locator and is used to enter addresses and contact data, etc.

    I accidentally dragged and dropped this settings part into the settings sidebar. I can’t drag it back to where it used to be.

    How to move this section back under the content area?

    Thank you,

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    I’m aware of this, but I think it’s a bug in Gutenberg itself, so I opened a ticket here.

    If you add the code below to the functions.php inside your active theme folder, then it will disable Gutenberg. It’s a workaround for now.

    add_filter( 'wpsl_post_type_args', 'custom_post_type_args' );
    
    function custom_post_type_args( $args ) {
        
        $args['show_in_rest'] = false;
        
        return $args;
    }
    Thread Starter weking

    (@weking)

    Thank you, you can move it back after you disable it

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Store Details Gutenberg’ is closed to new replies.