Jump to content

[Resolved] recaptcha


jpayam

Recommended Posts

I think you can just remove it from your store template, although I've not tested to see if the cart expects a captcha value when it's enabled in the admin area. Best to test it out and see. :)

I think content.checkout.php and similarly names template files are th eones you want.

Link to comment
Share on other sites

this works:

In the file cubecart.class.php :
1- Find:
if (!isset($this->_basket['recaptcha'])) {
Change to:
if (false && !isset($this->_basket['recaptcha'])) {

2-Find:
if ($GLOBALS['config']->get('config','recaptcha') && !$GLOBALS['session']->get('confirmed', 'recaptcha')) {
Change to:
if (false && $GLOBALS['config']->get('config','recaptcha') && !$GLOBALS['session']->get('confirmed', 'recaptcha')) {

Link to comment
Share on other sites

  • 6 months later...
On 4/22/2017 at 9:19 AM, Dirty Butter said:

I just solved 21 challenges to prove I'm human on ONE test order! I desperately need to have a fix so checkout does not use recaptcha v2. For now I have no choice but to turn off recaptcha entirely.

Same here. I deal with manually deleting the obvious bot/would-be-hacker customer registrations so that paying customers don't have to be inconvenienced so much that they'll probably decide it's not worth placing an order. :(

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...