[FIXED] ReCaptcha appear in the middle when using custom fields
Hello!
This bug found
fajrie and post it in the thread
http://forums.appthemes.com/recaptch...-fields-36198/
This happened because of the fact that the function to insert captcha is located before the hook for insert additional fields.
This bug is actual for ACFCP Plugin v1.0
Now I will tell you how to fix this bug.
1. Find the file
\includes\forms\register\register-form.php
2. Find this code (44-59 lines):
PHP Code:
<?php
// include the spam checker if enabled
appthemes_recaptcha();
?>
<div id="checksave">
<p class="submit">
<input tabindex="6" class="btn_orange" type="submit" name="register" id="wp-submit" value="<?php _e('Create Account','appthemes'); ?>" />
</p>
<?php do_action('register_form'); ?>
</div>
</form>
3. And replace with the following code:
PHP Code:
<div id="checksave">
<p class="submit">
<input tabindex="6" class="btn_orange" type="submit" name="register" id="wp-submit" value="<?php _e('Create Account','appthemes'); ?>" />
</p>
<?php do_action('register_form');
// include the spam checker if enabled
appthemes_recaptcha();
?>
</div>
</form>
Thats all!
I reported it to AppThemes developers, and I hope in the next version this bug go away.
Thanks for
fajrie