// Remove Certain Plugins From Recommended Plugins List
// NOTE: Comment out or remove the code for any plugin you wish to keep
add_filter( 'wpex_recommended_plugins', function( $plugins ) {
// Remove notice to install Total Theme Core
unset( $plugins['total-theme-core'] );
// Remove notice to install WPbakery Page Builder
unset( $plugins['js_composer'] );
// Remove notice to install WooCommerce
unset( $plugins['woocommerce'] );
// Remove Slider Revolution
unset( $plugins['revslider'] );
// Remove contact form 7
unset( $plugins['contact-form-7'] );
// Return plugins
return $plugins;
} );