Disable metabox for post and custom post type

Posted in: Newspaper
Post count: 61

I’ve found this in forum, added to functions.php on child theme, and it doesn’t work.

add_action( 'add_meta_boxes', 'tu_remove_meta_boxes', 999 );
function tu_remove_meta_boxes() {
remove_meta_box('td_post_theme_settings_metabox', 'post', 'normal');
}

I want to remove this metabox on my cpt:
сез

And this on usual posts:

pst

And rev slider on usual posts:

rev

Hiding them from screen not a good option.

Thanks

  • This topic was modified 7 years by pbc.
  • This topic was modified 7 years by pbc.
Post count: 35449

Hi,

Please add in functions.php on child theme the below code:

add_action( 'add_meta_boxes', 'tu_remove_meta_boxes', 999 );
function tu_remove_meta_boxes() {
remove_meta_box('td_post_theme_settings_metabox', 'post', 'normal');
}
add_action('add_meta_boxes', 'remove_meta_boxes');
function remove_meta_boxes(){
remove_meta_box( 'td_post_theme_settings_metabox', 'td_book', 'normal' );
remove_meta_box( 'mymetabox_revslider_0', 'td_book', 'normal' );
}

https://www.screencast.com/t/XKpkHKmw
See results: https://www.screencast.com/t/3zafrscE
https://www.screencast.com/t/UjUfRDGCe8C
https://www.screencast.com/t/IATCCOnx
Hope this will help you.

Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.