1 super security anti-spam captcha plugin for WordPress forms.
Captcha plugin is the best security solution that protects your WordPress website forms from spam entries. It can be used for login, registration, password recovery, comments form and much more.
It is easy to use and manage, a simple and effective plugin which will always guard your website forms.
Stop spam now!
Pro Features
All features from Free version included plus:
- Compatible with :
- Contact Form 7 (since v 3.4)
- Subscriber
- Jetpack contact form
- MailChimp for WordPress
- Ninja Forms
- Gravity Forms
- WPForms
- Caldera Forms
- Compatible with WooCommerce:
- Login form
- Register form
- Lost password form
- Checkout billing form
- Compatible with bbPress:
- New Topic form
- Reply form
- Compatible with BuddyPress:
- Registration form
- Comments form
- Create a Group form
- Compatible with Forums – wpForo:
- Login form
- Registration form
- New Topic form
- Reply form
- Compatible with Divi :
- Contact Form
- Login Form
- Compatible with LearnDash login:
- Login form
- Registration form
- Compatible with BuddyBoss:
- Registration form
- Compatible with Elementor Pro:
- Elementor Contact form [NEW]
- Hide captcha for:
- Allowed IP addresses
- Merge IP addresses from Limit Attempts plugin with Captcha Allow List
- Configure all subsites on the network
- Captcha submission time limit for separate forms
- Image packages with hand-drawn digits
- Add and enable unlimited number of image packages at the same time
- Edit Slide captcha appearance
- Add custom code via plugin settings page
- Get answer to your support question within one business day (Support Policy)
If you have a feature suggestion or idea you’d like to see in the plugin, we’d love to hear about it! Suggest a Feature
Visit our Help Center if you have any questions, our friendly Support Team is happy to help – https://support.bestwebsoft.com/
Earn 20% commission by selling the premium WordPress plugins and themes by BestWebSoft — https://bestwebsoft.com/affiliate/
Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send the text of PO and MO files to BestWebSoft and we’ll add it to the plugin. You can download the latest version of the program for work with PO and MO files Poedit.
captcha-bws
folder to the /wp-content/plugins/
directory.Login form with Captcha.
Registration form with Captcha.
Lost password form with Captcha.
Comments form with Captcha.
Contact form with Captcha.
Login form with Optical Character Recognition Captcha Type.
Login form with Slide Captcha Type.
Captcha Settings page.
Captcha Packages page.
Captcha Allow List page.
Follow the next steps in order to add Captcha to your WordPress login page (form):
1. Open your WordPress admin Dashboard.
2. Navigate to Captcha settings page.
3. Find “Enable Captcha for” for the “Login form”.
4. Save changes.
Captcha will only be displayed if you are using standard registration, login, comments form pages. In case of using custom forms and pages it will be necessary to make changes in them so that captcha could be displayed and work correctly.
Follow the instructions below in order to add Captcha plugin to your custom PHP or HTML form:
1. Install the Captcha plugin and activate it.
2. (Optional) If you would like to use your own settings for the custom forms you have (for example, for your contact and sign up forms), please follow the steps below:
– Go to your theme folder for example ‘your-wp-site/wp-content/themes/your-theme-name’ where your-theme-name is theme name you currently using ;
– Open functions.php file;
– Add the following code to the end of the file:
function add_my_forms( $forms ) { $forms['my_contact_form'] = "Form Display Name"; return $forms; } add_filter( 'cptch_add_form', 'add_my_forms' );
Please don’t use the next form slugs since they are predefined by plugin settings: general, wp_login, wp_register, wp_lost_password, wp_comments, bws_contact, bws_subscriber, buddypress_register, buddypress_comments, buddypress_group, cf7_contact, woocommerce_login, woocommerce_register, woocommerce_lost_password, woocommerce_checkout.
– Save file changes;
– Go to the “Settings” tab on the plugin settings page (Admin Dashboard -> Captcha); If everything is OK, you will see your form in ‘Enable Captcha for’ => ‘External plugins’ ( with labels which you specified in the “cptch_add_form_tab” hook call function ).
– Enable it and configure form options as you need;
– Click “Save changes”;
If you don`t want to use your own settings for CAPTCHA displaying in your custom form, it will use the settings from “General” block on the plugin settings.
If you completed the instructions in point 2, then you should add:
In this example, the second parameter is a slug for your custom form.
Otherwise, insert the following lines:
<?php echo apply_filters( 'cptch_display', '' ); ?>
After that, you should add the following lines to the function of the entered data checking.
If you completed the instructions in point 2, then you should add:
In this example, the third parameter is a slug for your custom form.
Otherwise, insert the following lines:
<?php $error = apply_filters( 'cptch_verify', true ); if ( true === $error ) { /* the CAPTCHA answer is right */ /* do necessary action */ } else { /* the CAPTCHA answer is wrong or there are some other errors */ echo $error; /* display the error message or do other necessary actions in case when the CAPTCHA test was failed */ } ?>
If there is a variable in the check function responsible for the errors output, you can concatenate variable $error to this variable. If the ‘cptch_verify’ filter hook returns ‘true’, it means that you have entered the CAPTCHA answer properly. In all other cases, the function will return the string with the error message.
Plugin displays captcha for those comments forms which were written in the same way as comments forms for the standard WordPress themes. Unfortunately, the plugin is incompatible with comments forms generated by using SAAS (eg: Disqus or JetPack comments forms). If you don’t use SAAS comments forms, please follow the next steps:
1. Using FTP, please go to {wp_root_folder}/wp-content/themes/{your_theme}.
2. Find and open “comments.php” file. It is possible that the file that is used to display the comment form in your theme called differently or comment form output functionality is inserted directly in the other templates themes (eg “single.php” or “page.php”). In this case, you need to open the corresponding file.
3. Make sure that the file contains one of the next hooks:
do_action ( 'comment_form_logged_in_after' ) do_action ( 'comment_form_after_fields' ) do_action ( 'comment_form' )
If you didn’t find one of these hooks, then put the string <?php do_action( 'comment_form', $post->ID ); ?>
in the comment form.
Please make sure that the problem hasn’t been discussed yet on our forum (https://support.bestwebsoft.com). If no, please provide the following data along with your problem’s description:
– The link to the page where the problem occurs
– The name of the plugin and its version. If you are using a pro version – your order number.
– The version of your WordPress installation
– Copy and paste into the message your system status report. Please read more here: Instruction on System Status