Home › Forums › Invisible reCaptcha › How-To and Troubleshooting › Error in Homepage › Reply To: Error in Homepage
June 17, 2017 at 4:10 pm
#4529

MihChe
Keymaster
Hi,
Let’s try to add this into your funtions.php file
add_action('wp_print_scripts', function (){
if(is_home()){
wp_dequeue_script( 'google-invisible-recaptcha' );
}
});
Mihai