XF 1.1 Xf doesnt showing the captcha to guest

Hi,

My contact form is working fine to registered members, but when a guest try to send a contact message, the system doesn't show the captcha:

ScreenHunter_01 Sep. 08 12.34.webp

If the guest try to send filling all fields, whitout the captch field, the board returns a captcha's error.

Anyone know how can i solve that? Or how can i take off the captcha just to the guest's contact form at /misc/contact?

Thanks a lot. ;)
 
Which captcha are you using? Recaptcha or Q&A?

Admin CP -> Home -> Options -> User Registration -> Enable CAPTCHA for Guests

Q&A requires you to setup your own questions if you haven't already.
 
Which captcha are you using? Recaptcha or Q&A?

Admin CP -> Home -> Options -> User Registration -> Enable CAPTCHA for Guests

Q&A requires you to setup your own questions if you haven't already.

Yeah.. i know this option, but if i disable it, all board will work without a captcha protection. Have you any hook tip to disable it just to the guet contact form?
 
Can you post the URL to your forum? I want to test this myself.

Otherwise it could be a style or addon problem. You can troubleshoot that by testing the problem on the default style with no addons.
 
KeyCaptcha doesn't work in overlays, disable the overlay in the link in the template: footer

find:
Code:
<li><a href="{xen:link 'misc/contact'}" class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}">{xen:phrase contact_us}</a></li>

Replace:
Code:
<li><a href="{xen:link 'misc/contact'}">{xen:phrase contact_us}</a></li>
 
Top Bottom