Metaboxes – Remove

Posted in: Newspaper
Post count: 55

Hi,

I would like to remove the metaboxes below the Add New Post admin area, as these examples in my functions:

remove_meta_box(‘td_review_metabox’, ‘post’, ‘normal’);
remove_meta_box(‘td_post_theme_settings_metabox’, ‘post’, ‘normal’);

I need to remove the Product Review and Post Settings boxes.

Anyone could show me the proper string to remove the Newspaper theme boxes?

  • This topic was modified 12 years by rbaccaro.
Post count: 6600

Hi,

You have to remove this code from td_templates_settings.php file, like this: http://screencast.com/t/hnOF1X9iZAJC

Thanks

Post count: 55

I used:

function remove_plugin_metaboxes(){
remove_meta_box(‘td_review_metabox’, ‘post’, ‘normal’);
remove_meta_box(‘td_post_theme_settings_metabox’, ‘post’, ‘normal’);
remove_meta_box(‘td_post_video_metabox’, ‘post’, ‘side’);
}
add_action( ‘do_meta_boxes’, ‘remove_plugin_metaboxes’ );

Thank you.

Post count: 55

Thank you.

  • This reply was modified 12 years by rbaccaro. Reason: wrong form
Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.