The following snippet will remove the annoying Metabox on your pages that Slider Revolution adds. Just add this to your functions.php and watch the metabox dissappear.
/**
* 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' );
}
Code originally found here: https://gist.github.com/DevinWalker/ee9d4e53883460c6bbb8
This does not work in the latest version 6.5.19