ok ok ... i solve that...
lets go step by step ...
------------------------------------------------
in user-register.php
found this:
<?php osc_run_hook('user_register_form') ; ?>
and paste this right after:
<?php osc_show_recaptcha('register'); ?>
atention... do not post like this, post only the line above here
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div> (don´t post like this)
----------------------------------------
in iten-edit.php
found this:
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div>
and replace for that:
<?php osc_show_recaptcha('register'); ?>
-------------------------------------
on item.php found this: (near to line 160)
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div>
and replace for that:
<div style="float:left;display:block;width:100%;margin:5px 0 10px 0;">
<?php osc_show_recaptcha('register'); ?>
</div>
and replace this:
<!-- ReCaptcha -->
<?php if( osc_recaptcha_public_key() ) { ?>
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'custom',
custom_theme_widget: 'recaptcha_widget'
};
</script>
<div id="recaptcha_widget">
<div id="recaptcha_image"><img /></div>
<span class="recaptcha_only_if_image"><?php _e('Enter the words above','tatiana'); ?>:</span>
<input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
<div><a href="javascript:Recaptcha.showhelp()"><?php _e('Help', 'tatiana'); ?></a></div>
</div>
<?php } ?>
<?php osc_show_recaptcha(); ?>
for that:
<!-- ReCaptcha -->
<?php if( osc_recaptcha_public_key() ) { ?>
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'custom',
custom_theme_widget: 'recaptcha_widget'
};
</script>
<div id="recaptcha_widget">
<div id="recaptcha_image"><img /></div>
<span class="recaptcha_only_if_image"></span>
</div>
<?php } ?>
<?php osc_show_recaptcha(); ?>
------------------------------------------
item-contact.php change this:
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div>
for that:
<div style="float:left;display:block;width:100%;margin:5px 0 10px 0;">
<?php osc_show_recaptcha('register'); ?>
</div>
---------------------------
iten-send-friend.php replace this:
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div>
for that:
<div style="float:left;display:block;width:100%;margin:5px 0 10px 0;">
<?php osc_show_recaptcha('register'); ?>
</div>
---------------------------------
item-post.php replace this:
<div style="float:left;clear:both;width:100%;margin:5px 0 10px 0;">
<?php osc_run_hook("anr_captcha_form_field"); ?>
</div>
oly for that:
<?php osc_run_hook("anr_captcha_form_field"); ?>
-----------------------------
and that´s it.
using this code, you don´t need anymore to add noRecaptcha Recaptcha at admin´s plugin page, and do need anymore to create a API for recaptcha on google, it´s work fine here... (see date of this post to know when it has been added)