sinishaar
9/7/2019 - 9:33 PM

Deregister the Contact Form 7 Script and Stylesheet

/**
 * Deregister the Contact Form 7 Script and Stylesheet
 */

function mb_remove_cf7_css() {
	if ( function_exists( 'wpcf7_enqueue_styles' ) ) {
		if ( !is_page('contact')) { 
			wp_deregister_style('contact-form-7');
   		}	
	}
}
add_action('wp_print_styles', 'mb_remove_cf7_css');

function mb_remove_cf7_js() {
	if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
	   if ( !is_page('contact')) { 
		   wp_deregister_script('contact-form-7');
   		}	
	}
}
add_action('wp_print_scripts', 'mb_remove_cf7_js');