@solowhale,
you can add this code to your theme functions.php to do that ??
/**
* Remove Rev Slider Metabox
*/
if ( is_admin() ) {
function remove_revolution_slider_meta_boxes() {
remove_meta_box( ‘mymetabox_revslider_0’, ‘page’, ‘normal’ );
remove_meta_box( ‘mymetabox_revslider_0’, ‘post’, ‘normal’ );
remove_meta_box( ‘mymetabox_revslider_0’, ‘YOUR_CUSTOM_POST_TYPE’, ‘normal’ );
}
add_action( ‘do_meta_boxes’, ‘remove_revolution_slider_meta_boxes’ );
}
or you can just do this:

-
This reply was modified 7 years, 6 months ago by
happyAnt.
-
This reply was modified 7 years, 6 months ago by
happyAnt.
-
This reply was modified 7 years, 6 months ago by
happyAnt.