You can add this code to functions.php to remove it from the home page or you can add a condition to remove it from all page except the page where you have Contact Form 7
function conditionally_load_plugins() {
// Remove from Home page
if(is_front_page()) {
wp_dequeue_script('google-invisible-recaptcha');
}
}
add_action( 'wp_enqueue_scripts', 'conditionally_load_plugins' );
You can add this code to functions.php to remove it from the home page or you add the condition to show it only on the login page
function conditionally_load_plugins() {
// Remove from Home page
if(is_front_page()) {
wp_dequeue_script('google-invisible-recaptcha');
}
}
add_action( 'wp_enqueue_scripts', 'conditionally_load_plugins' );