Google reCAPTCHA v3 badge disappearing | Community
Skip to main content
Level 2
July 29, 2025
Solved

Google reCAPTCHA v3 badge disappearing

  • July 29, 2025
  • 1 reply
  • 650 views

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

Best answer by SanfordWhiteman

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; }

 

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
Level 10
July 30, 2025

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; }