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}
