Hi Max,
On long pages where the form is below the fold, captcha errors are not visible without scrolling down. So most people will be oblivious to the error.
I've modified CF to include an anchor link like this (chronocontact.html.php around line 129):
And on the captcha error redirect I changed this (chronoform.php around line 278):
This way it doesn't matter if the error message is below the fold, the visitor will still see the error.
On long pages where the form is below the fold, captcha errors are not visible without scrolling down. So most people will be oblivious to the error.
I've modified CF to include an anchor link like this (chronocontact.html.php around line 129):
<?php if($MyForm->formerrors){ ?>
<a name="error" /> // This gets added
<span class="cf_alert"><?php echo '<ol>'.$MyForm->formerrors.'</ol>'; ?></span>
<?php } ?>
And on the captcha error redirect I changed this (chronoform.php around line 278):
$mainframe->redirect($session->get('cfreturnurl_'.$formname, '', md5('chrono'))."#error");
This way it doesn't matter if the error message is below the fold, the visitor will still see the error.