Hello,
You need comment the following code in the file woopress/framework/theme-functions.php (line 1425):
<div class="captcha-block">
<img src="<?php echo $captcha_img; ?>">
<input type="text" name="captcha-word" class="captcha-input">
<input type="hidden" name="captcha-prefix" value="<?php echo $prefix; ?>">
</div>
and
$captcha_instance = new ReallySimpleCaptcha();
if(!$captcha_instance->check( $_REQUEST['captcha-prefix'], $_REQUEST['captcha-word'] )) {
$return['status'] = 'error';
$return['msg'] = __('The security code you entered did not match. Please try again.', ETHEME_DOMAIN);
echo json_encode($return);
die();
on line 1569.
Thank you.
Regards,
Eva Kemp.