FEU and Captcha - remove text box [SOLVED]
Posted: Wed Jun 24, 2015 6:52 pm
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: on the textbox (which has a class), but i still can't remove the label:
I worry that this will confuse users.
EDIT
Found this in the template of FEU:
Changed it to:
It's not automatic (in case i change it again) but it should work for reCaptcha.
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: noneCode: Select all
Enter the text from the image: EDIT
Found this in the template of FEU:
Code: Select all
{if isset($captcha)}
<br/>
{$captcha_title}: {$input_captcha}<br/>
{$captcha}
{/if}Code: Select all
{if isset($captcha)}
<br/>
{$captcha}
{/if}