• I’ve tried getting support from the author’s plug-in site, but haven’t received a response yet. I was hoping a few of you experts could answer my question.

    When I post a comment on my blog without entering the code from AuthImage, my comment is sent to moderation, which is a good thing. But that also means there’s a potential of me having to moderate quite a lot of spammers at some point if their comments are sent to moderation.

    It’s my understanding that if the code is not entered, then the comment goes nowhere. How do I get it to do this?

    https://www.familywebwatch.com/blog

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s explained in its README. The following instruction in for WP1.2
    -or- if you want to dump the comment altogether and warn the commenter
    that an invalid code was entered, look for the following lines in
    'wp-comments-post.php':

    if ( '' == $comment )
    die( __('Error: please type a comment.') );

    and add this after it:

    if ( !checkAICode($code) )
    die( __('Error: please enter the valid authorization code.') );

    Thread Starter davincim

    (@davincim)

    I see. I was only working up to that point, before the “or”. It helps to have a pair of fresh eyes. Thanks alphaoide!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘AuthImage not challenging’ is closed to new replies.