Hi Mike
Just had a quick look at it (nice site btw). I think what you need to do is in the class.faq_request.php file:
Add at the beginning of the function update (just after the global $messagestack):
Code:
$error=false;
$zco_notifier->notify('NOTIFY_FAQ_CAPTCHA_CHECK');
then change the line 2 below from
Code:
if(isset($_POST['email_address']) && !empty($_POST['email_address']) && isset($_POST['fullname']) && !empty($_POST['fullname']) && isset($_POST['message']) && !empty($_POST['message']) && isset($_POST['subject']) && !empty($_POST['subject'])) {
to
Code:
if(isset($_POST['email_address']) && !empty($_POST['email_address']) && isset($_POST['fullname']) && !empty($_POST['fullname']) && isset($_POST['message']) && !empty($_POST['message']) && isset($_POST['subject']) && !empty($_POST['subject']) && $error==false) {
in the class.google_recaptcha.php file add (line 23 ish)
Code:
$pages_to_check[] = 'NOTIFY_FAQ_CAPTCHA_CHECK';
Hopefully that should sort it - if not I'll have another look
Regards
David