Adding a captcha plugin for comments in the site

Actually there are a lot of solution for this. Simply a google could answer you the whole. And also WordPress plugin repository could help you. But to pinpoint, you can use Plugins easily. Try anyone of them: Captcha — WordPress plugin SI CAPTCHA Anti-Spam — WordPress plugin more… And also, Akismet is a very good … Read more

Create customized captcha field to wordpress comment form without Plugin

Check out the default comment-template.php file: wp-includes/comment-template.php You will need to replace the arguments: $defaults = array( ‘fields’ => apply_filters( ‘comment_form_default_fields’, $fields ), ‘comment_field’ => ‘<p class=”comment-form-comment”><label for=”comment”>’ . _x( ‘Comment’, ‘noun’ ) . ‘</label><textarea id=”comment” name=”comment” cols=”45″ rows=”8″ aria-required=”true”></textarea></p>’, ‘must_log_in’ => ‘<p class=”must-log-in”>’ . sprintf( __( ‘You must be <a href=”https://wordpress.stackexchange.com/questions/174775/%s”>logged in</a> to post … Read more

How to find out which plugin create captcha after login?

This looks like LiteSpeed reCaptcha – https://blog.litespeedtech.com/2019/03/18/recaptcha-server-wide-protection/ Probalby it was enabled by your hosting provider to protect sites from brute force attacks. I’d suggest you to contact them and explain your issue so they could configure it to make a proper redirect after reCaptcha check.

CAPTCHA plugin where I can use my own images and ask my own questions? [closed]

Update: From my hard-earned painful expereince, KeyCAPTCHA is scam by professional spammers You can create your own captchas from your own images with “Personal Captcha” of KeyCAPTCHA https://www.keycaptcha.com/whatisit/?s=pc For subscribers of such service there is online designer The basic service is free but possibility of creating your own captchas is fee-based (5 USD a months, … Read more

Ajax Validation for reCaptcha

Just found out that reCaptcha actually rejects CAPTCHAs which are submitted to their server more than once. Since I was using the WP-reCAPTCHA plugin, the plugin resubmitted the CAPTCHA after my AJAX submission. So I just commented out a line from the plugin that does the submission, which is in file recaptcha.php, line 27: $this->register_filters();