• Resolved Oby.

    (@oby4455)


    Hello,

    I would like to hide the Google reCAPTCHA badge on the wordpress login page wp-admin.php with CSS.

    The code I used does not work. Does anyone know which code would work ?

    Thank you in advance for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • WFGerroald

    (@wfgerald)

    Hey @oby4455,

    Can you please add the code below to the bottom of your themes’s functions.php file and let me know if it helps?

    function remove_captcha_badge() { ?>
        <style type="text/css">
            .grecaptcha-badge {
    opacity:0 !important;
    }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'remove_captcha_badge' );

    Please let me know.

    Thanks,

    Gerroald

    Thread Starter Oby.

    (@oby4455)

    It does work! Thank you very much!! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do you hide the reCAPTCHA badge on wp-admin.php ?’ is closed to new replies.