in this site: https://kunstkeramikk.no/
Page Speed Insights says: Remove unused JavaScript for Google Recaptcha
have tried to use the solution proposed in this post but it does not work for me
Page Speed Insights Remove unused JavaScript for Google Recaptcha
`add_action( 'wp_enqueue_scripts', 'mytheme_deregister_scripts' );
function mytheme_deregister_scripts() {
if( is_home() || is_front_page() ) :
wp_deregister_script('google-invisible-recaptcha');
endif;
}`
How can I solved this?
thank you