How to hide the Google Invisible reCAPTCHA badge

前端 未结 15 2235
感情败类
感情败类 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 04:53

    I decided to hide the badge on all pages except my contact page (using Wordpress):

    /* Hides the reCAPTCHA on every page */
    .grecaptcha-badge {
        visibility: hidden !important;
    }
    
    /* Shows the reCAPTCHA on the Contact page */
    /* Obviously change the page number to your own */
    .page-id-17 .grecaptcha-badge {
        visibility: visible !important;
    }
    

    I'm not a web developer so please correct me if there's something wrong.

    EDIT: Updated to use visibility instead of display.

提交回复
热议问题