Site logo

Archived topic

hide layout window in posts and pages

4 replies · Started by Basello on May 4, 2020

Viewing posts 1–5 of 5

hello,

I would like to hide the layout window (who contain the setting for sidebar, footer widgets,etc) in the back end for pages and posts. This for all users.
Is it possible to add some code in a child theme for that, please?
Thank you for your help.

If you want to remove it for everyone then try this:

add_action( 'add_meta_boxes', function() {
    remove_meta_box( 'generate_layout_options_meta_box', 'page', 'side' );
    remove_meta_box( 'generate_layout_options_meta_box', 'post', 'side' );
}, 999 );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Thank you! It is perfect!

No problem :)

This archived topic is closed to new replies.