Osclass forums
Support forums => General help => 3.7.x => Topic started by: pixelpadre on September 01, 2017, 02:36:30 am
-
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.
(http://RUSHLIMBURGER.COM/CONTACTFORM.png)
-
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.
(http://RUSHLIMBURGER.COM/CONTACTFORM.png)
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> -->
-
Since they turned off v1 captcha v2 doesn't work in Bender so I tried your solution. Sill just get "The Recaptcha code is wrong" - it looks like Bender doesn't implement v2 properly. Anyone have the same problem ?
-
I have same problem and both times are fresh installs
-
I am also having this issue.
Osclass 3.7.1
bender 3.1.4
The reCAPTCHA was not entered correctly' comes up on registration page.
Not sure where else this may happen as I have not been able to create a test user account.
Regards
Mike
-
I checked with osclasswizards 3.7.1 and i didn't put any words in the old recaptcha words box. And it is working fine for me.