Ok so I opted for the latest version of captcha. However, when I try to contact the seller through contact form I am asked to type the two words seen above........which dont exist i new version of captcha.
I also had this problem and resolved it
/oc-content/themes/bender/item-sidebar.php
From recaptcha v1:
"
<span class="recaptcha_only_if_image"><?php _e('Enter the words above','bender'); ?>:</span>
<input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
"
so my code looks like this now
<div class="control-group">
<div class="controls">
<?php osc_run_hook('item_contact_form', osc_item_id()); ?>
<?php if( osc_recaptcha_public_key() ) { ?>
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'custom',
custom_theme_widget: 'recaptcha_widget'
};
</script>
<style type="text/css">
div#recaptcha_widget, div#recaptcha_image > img { width:240px; margin-top: 5px; }
div#recaptcha_image { margin-bottom: 15px; }
</style>
<!-- <div id="recaptcha_widget">
<div id="recaptcha_image"><img /></div>
<span class="recaptcha_only_if_image"><?php _e('Enter the words above','bender'); ?>:</span>
<input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
<div><a href="javascript:Recaptcha.showhelp()"><?php _e('Help', 'bender'); ?></a></div>
</div> -->
</div>
<?php } ?>
<?php osc_show_recaptcha(); ?>
<button type="submit" class="ui-button ui-button-middle ui-button-main"><?php _e("Send", 'bender');?></button>
</div>
</div>
</form>
but I removed this part:
<!-- <div id="recaptcha_widget">
<div id="recaptcha_image"><img /></div>
<span class="recaptcha_only_if_image"><?php _e('Enter the words above','bender'); ?>:</span>
<input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
<div><a href="javascript:Recaptcha.showhelp()"><?php _e('Help', 'bender'); ?></a></div>
</div> -->