Site icon Anthony Carbon

Dequeue or deregister a style or script of JS Composer WordPress plugin

Dequeue or deregister a style or script of JS Composer WordPress plugin using your current theme functions.php. Paste the codes below.

<link rel='stylesheet' id='js_composer_front-css'  href='http://mytravelpersonality.com/temp/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=5.0.1' type='text/css' media='all' />
<script type='text/javascript' src='https://mytravelpersonality.com/temp/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=5.0.1'></script>
add_filter( 'vc_shortcode_output', 'anton_vc_shortcode_output', 10, 4 );
function anton_vc_shortcode_output($output, $xx, $atts ){
 	wp_dequeue_style( 'js_composer_front' );
 	wp_dequeue_script( 'wpb_composer_front_js' );
	return $output;
}
Exit mobile version