@energias: Thanks ??
@onlyaction: This is highly depending on your theme. Currently the captcha is appended to the “You may use these HTML Tags…” message, which occurs right before the submit button in the default WP-Themes. Other Themes may handle this in a differnet way.
If your theme has a custom comment form (check out comments.php
in your theme directory), you can try the following:
Insert this before the comment form (it will remove the default rendering):
<?php
// remove default behavior
if ( class_exists( 'WP_reCaptcha_Options' ) ) {
remove_filter('comment_form_defaults',array(WP_reCaptcha_Options::instance(),'comment_form_defaults'),10);
}
?>
Then insert that after the message area
<?php do_action('print_comments_recaptcha'); ?>
Good Luck!