Remove Google reCAPTCHA in the Divi theme

Remove Google reCAPTCHA in the Divi theme on child sites.

Snippet Type

Execute on Child Sites

Snippet

function project_dequeue_recaptcha() {
    wp_dequeue_script( 'recaptcha-v3' );
    wp_deregister_script( 'recaptcha-v3' );
    wp_dequeue_script( 'et-core-api-spam-recaptcha' );
wp_deregister_script( 'et-core-api-spam-recaptcha' );
}

add_action( 'wp_print_scripts', 'project_dequeue_recaptcha' );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.