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
Solved! Go to Solution.
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;
}
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;
}