Hide metabox
-
Hi @bradvin
Which hook should we use to remove the metabox, specifically for these 3 metaboxes for both gallery and album?
- Settings
- Sorting
- Retina Support
It seems that do_meta_boxes is able to remove them but throws an error on “..class-metaboxes.php on line 124” when updating.
Here’s my code
function remove_plugin_metaboxes(){ remove_meta_box( 'foogallery_retina', 'foogallery', 'side' ); remove_meta_box( 'foogallery_sorting', 'foogallery', 'side' ); remove_meta_box( 'foogallery_settings', 'foogallery', 'normal' ); remove_meta_box( 'foogalleryalbum_sorting', 'foogallery-album', 'side' ); remove_meta_box( 'foogalleryalbum_settings', 'foogallery-album', 'normal' ); } add_action( 'do_meta_boxes', 'remove_plugin_metaboxes' );
Hope you can point me in the right direction. Thank you in advanced!
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Hide metabox’ is closed to new replies.