Hide turnstile on 2FA
-
A client of mine has 2FA activated from WordFence. On the 2FA page, the login button overlaps with the turnstile. As the turnstile is already checked before, the most elegant way to solve this was by hiding the turnstile, IMHO.
I now have implemented a CSS solution on the site itself, but it might be interesting to incorporate this in the plugin itself (or even change the display code) so no custom CSS is needed for anyone./* Hide Turnstile widget when Wordfence 2FA overlay is active */
body.login:has(#wfls-prompt-overlay) .cf-turnstile {
display: none !important;
visibility: hidden !important;
}
The topic ‘Hide turnstile on 2FA’ is closed to new replies.