Archived topic
hide layout window in posts and pages
4 replies · Started by Basello on May 4, 2020
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.
Hi there,
Does this help?
https://generatepress.com/forums/topic/disable-elements-2/#post-206898
Let me know :)
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 :)