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 Post Has One Comment

  1. cdubs

    This does not work in the latest version 6.5.19

Leave a Reply

Get in Touch

Please fill out the form below and we will get back to you ASAP

  • This field is for validation purposes and should be left unchanged.