WP Armour – Honeypot Anti Spam - Version 2.0.2

Version Description

  • Added support for Beaver Builder Theme's comment form.
Download this release

Release Info

Developer dnesscarkey
Plugin Icon 128x128 WP Armour – Honeypot Anti Spam
Version 2.0.2
Comparing to
See all releases

Code changes from version 2.0.1 to 2.0.2

Files changed (4) hide show
  1. includes/js/wpa.js +2 -0
  2. includes/wpa_config.php +1 -1
  3. readme.txt +6 -2
  4. wp-armour.php +1 -1
includes/js/wpa.js CHANGED
@@ -38,6 +38,8 @@ function wpa_add_honeypot_field(){
38
  jQuery('.bbp-reply-form form').append(wpa_hidden_field); // BBPRESS REPLY
39
  jQuery('form#commentform').append(wpa_hidden_field); // WP COMMENT
40
  jQuery('form#ast-commentform').append(wpa_hidden_field); // Astra Comment Form
 
 
41
  jQuery('form.wpcf7-form').append(wpa_hidden_field); // CONTACT FORM 7
42
  jQuery('form.wpforms-form').append(wpa_hidden_field); // WPFFORMS
43
  jQuery('.gform_wrapper form').append(wpa_hidden_field); // GRAVITY FORMS
38
  jQuery('.bbp-reply-form form').append(wpa_hidden_field); // BBPRESS REPLY
39
  jQuery('form#commentform').append(wpa_hidden_field); // WP COMMENT
40
  jQuery('form#ast-commentform').append(wpa_hidden_field); // Astra Comment Form
41
+ jQuery('form#fl-comment-form').append(wpa_hidden_field); // Beaver Builder Theme Form
42
+
43
  jQuery('form.wpcf7-form').append(wpa_hidden_field); // CONTACT FORM 7
44
  jQuery('form.wpforms-form').append(wpa_hidden_field); // WPFFORMS
45
  jQuery('.gform_wrapper form').append(wpa_hidden_field); // GRAVITY FORMS
includes/wpa_config.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
- $GLOBALS['wpa_version'] = '2.0.1';
4
  $GLOBALS['wpa_field_name'] = get_option('wpa_field_name');
5
  $GLOBALS['wpa_error_message'] = get_option('wpa_error_message');
6
  $GLOBALS['wpa_disable_test_widget'] = get_option('wpa_disable_test_widget');
1
  <?php
2
  if ( ! defined( 'ABSPATH' ) ) exit;
3
+ $GLOBALS['wpa_version'] = '2.0.2';
4
  $GLOBALS['wpa_field_name'] = get_option('wpa_field_name');
5
  $GLOBALS['wpa_error_message'] = get_option('wpa_error_message');
6
  $GLOBALS['wpa_disable_test_widget'] = get_option('wpa_disable_test_widget');
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dnesscarkey
3
  Donate link: https://dineshkarki.com.np/wp-armour-anti-spam
4
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
5
  Requires at least: 3.0
6
- Tested up to: 6.0
7
- Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -136,6 +136,10 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
136
 
137
  == Changelog ==
138
 
 
 
 
 
139
  = = 2.0.1 =
140
 
141
  * Fixed error message due to removal of ajax call.
3
  Donate link: https://dineshkarki.com.np/wp-armour-anti-spam
4
  Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
5
  Requires at least: 3.0
6
+ Tested up to: 6.0.2
7
+ Stable tag: 2.0.2
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
136
 
137
  == Changelog ==
138
 
139
+ = = 2.0.2 =
140
+
141
+ * Added support for Beaver Builder Theme's comment form.
142
+
143
  = = 2.0.1 =
144
 
145
  * Fixed error message due to removal of ajax call.
wp-armour.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: WP Armour - Honeypot Anti Spam
5
  Plugin URI: http://wordpress.org/plugins/honeypot/
6
  Description: Add honeypot anti spam protection.
7
  Author: Dnesscarkey
8
- Version: 2.0.1
9
  Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
10
  */
11
 
5
  Plugin URI: http://wordpress.org/plugins/honeypot/
6
  Description: Add honeypot anti spam protection.
7
  Author: Dnesscarkey
8
+ Version: 2.0.2
9
  Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
10
  */
11