Page 1 of 1

FEU and Captcha - remove text box [SOLVED]

Posted: Wed Jun 24, 2015 6:52 pm
by wmdvanzyl
Greetings.

When using Captcha with FEU it displays the type of Captcha that is set in the Captcha module, but reCaptcha no longer requires text to be entered. Therefor i would like to remove that textbox. Is there a way to do it from within the module settings? In the mean time i am just using the CSS hack:

Code: Select all

display: none
on the textbox (which has a class), but i still can't remove the label:

Code: Select all

Enter the text from the image: 
I worry that this will confuse users.


EDIT

Found this in the template of FEU:

Code: Select all

{if isset($captcha)}
   <br/>
   {$captcha_title}: {$input_captcha}<br/>
   {$captcha}
 {/if}
Changed it to:

Code: Select all

{if isset($captcha)}
   <br/>
   {$captcha}
 {/if}
It's not automatic (in case i change it again) but it should work for reCaptcha.