
Originally Posted by
DrByte
These are typical when using a template (including any custom override files) built for an older version of Zen Cart, which didn't have the features that the newer versions of the plugin depends on.
I can confirm that this worked for me in v. 1.5.4. The Create Account form was going through without checking the reCaptcha box, until I added:
Code:
$zco_notifier->notify('NOTIFY_CREATE_ACCOUNT_CAPTCHA_CHECK');
before
Code:
if ($error == true) {
in /includes/modules/YOUR_TEMPLATE/create_account.php
(couldn't figure out how to multi-quote, but this is what I was referring to:)
Reading a couple pages pack in this thread I saw someone mentioning their edits to /includes/modules/pages/contact_us/header_php.php on an older version of zen cart. I read to the very bottom of the instructions and saw this change is needed specifically on 1.5.1, even though I'm on 1.5.6 I tried it out as there was nothing left to do and sure enough the captcha became required to use the contact us form. Any ideas why 1.5.1 specific changes needed to be made on my 1.5.6 install?
I've also just had to do the same on the /includes/modules/TEMPLATE_NAME/create_account.php
Copying the zco notifier line across from the 1.3 files into this file made it work for me, else you could create an account without ticking the box!
J