To Remove Contact Form 7 scripts elsewhere except the pages using the Contact form 7 copy the below code to your functions.php
// Add the Contact Form 7 scripts on selected pages
function add_wpcf7_scripts() {
if ( is_page(array(60)) )
wpcf7_enqueue_scripts();
}
// Remove Contact Form 7 scripts elsewhere
if ( ! is_admin() && WPCF7_LOAD_JS )
remove_action( ‘wp_print_scripts’, ‘wpcf7_enqueue_scripts’ );
add_action( ‘wp’, ‘add_wpcf7_scripts’ );
(Visited 123 times, 1 visits today)