Viewing 1 replies (of 1 total)
  • If I understand you correctly, you’re looking to include a custom message with your comment form to advise users how they can make the captcha go away.

    Take a look inside the comments.php file located in your theme folder. Within that file there should be a line of a code:

    <?php do_action('comment_form', $post->ID); ?>

    You could add a message with simple HTML markup (no quotes or echo call needed).

    For an example,

    <?php do_action('comment_form', $post->ID); ?>
    <p><small><strong>Advice:</strong> You can make the captcha go away by...</small></p>

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: SI CAPTCHA Anti-Spam] Add Text/Message To Advice Users How To Make It Go Away?’ is closed to new replies.