SOLVED

Google reCAPTCHA v3 badge disappearing

Go to solution
ssRD25
Level 2

Google reCAPTCHA v3 badge disappearing

We're in the process of implementing reCAPTCHA v3 on our Marketo forms, following the native CAPTCHA integration recently rolled out by Marketo.

 

Form submissions are working smoothly, and we're successfully capturing metrics in the Google reCAPTCHA console.

 

The only issue we're facing is with the reCAPTCHA badge:
- Occasionally, it appears but disappears within milliseconds.

- At other times, the badge simply fails to load altogether.

 

LP - http://504-zrn-403.mktoweb.com/lp/504-ZRN-403/Test-reCAPTCHA.html

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Google reCAPTCHA v3 badge disappearing

That’s because you’re separately loading the reCAPTCHA Enterprise library. Marketo doesn’t do that. But Marketo does hide all instances of the reCAPTCHA badge, including the Enterprise badge (lower right) and the in-form badge (in the form).

 

If you want to show the Enterprise badge at all times you can add this to your page CSS:

.grecaptcha-badge[data-style="bottomright"] {
  visibility: visible !important;
}

 

View solution in original post

1 REPLY 1
SanfordWhiteman
Level 10 - Community Moderator

Re: Google reCAPTCHA v3 badge disappearing

That’s because you’re separately loading the reCAPTCHA Enterprise library. Marketo doesn’t do that. But Marketo does hide all instances of the reCAPTCHA badge, including the Enterprise badge (lower right) and the in-form badge (in the form).

 

If you want to show the Enterprise badge at all times you can add this to your page CSS:

.grecaptcha-badge[data-style="bottomright"] {
  visibility: visible !important;
}