How to hide the Google Invisible reCAPTCHA badge

前端 未结 15 2232
感情败类
感情败类 2020-12-02 04:15

When implementing the new Google Invisible reCATPTCHA, by default you get a little \"protected by reCAPTCHA\" badge in the bottom right of the screen that pops out when you

15条回答
  •  我在风中等你
    2020-12-02 05:02

    Recaptcha contact form 7 and Recaptcha v3 solution.

    body:not(.page-id-20) .grecaptcha-badge {
        display: none;
    }
    

    More Than One Contact Form Page?

    body:not(.page-id-12):not(.page-id-43) .grecaptcha-badge {
        display: none;
    }
    

    You can add more “nots” if you have more contact form pages.

    body:not(.page-id-45):not(.page-id-78):not(.page-id-98) .grecaptcha-badge {
        display: none;
    }
    

    Make sure that your body section will like this:

    
    

    Change it so that it looks like this:

     >
    

提交回复
热议问题