Version Description
- Should fix 'jQuery undefined' errors
Download this release
Release Info
Developer | karpstrucking |
Plugin | Gravity Forms Zero Spam |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- gravityforms-zero-spam.php +2 -2
- readme.txt +6 -3
gravityforms-zero-spam.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Gravity Forms Zero Spam
|
5 |
* Plugin URI: http://www.gowp.com/plugins/gravityforms-zero-spam
|
6 |
* Description: Enhance your Gravity Forms to include anti-spam measures originally based on the work of David Walsh's <a href="http://davidwalsh.name/wordpress-comment-spam">"Zero Spam"</a> technique.
|
7 |
-
* Version: 1.0.
|
8 |
* Author: GoWP
|
9 |
* Author URI: https://www.gowp.com
|
10 |
* License: GPL-2.0+
|
@@ -25,7 +25,7 @@
|
|
25 |
|
26 |
class GF_Zero_Spam {
|
27 |
public function __construct() { // instantiation (is that a word?)
|
28 |
-
add_action( 'wp_footer', array( $this, 'add_key_field' ) ); // add key injection JS to the bottom of the page
|
29 |
add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms
|
30 |
}
|
31 |
public function deactivate() { // plugin deactivation
|
4 |
* Plugin Name: Gravity Forms Zero Spam
|
5 |
* Plugin URI: http://www.gowp.com/plugins/gravityforms-zero-spam
|
6 |
* Description: Enhance your Gravity Forms to include anti-spam measures originally based on the work of David Walsh's <a href="http://davidwalsh.name/wordpress-comment-spam">"Zero Spam"</a> technique.
|
7 |
+
* Version: 1.0.4
|
8 |
* Author: GoWP
|
9 |
* Author URI: https://www.gowp.com
|
10 |
* License: GPL-2.0+
|
25 |
|
26 |
class GF_Zero_Spam {
|
27 |
public function __construct() { // instantiation (is that a word?)
|
28 |
+
add_action( 'wp_footer', array( $this, 'add_key_field' ), 9999 ); // add key injection JS to the bottom of the page
|
29 |
add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms
|
30 |
}
|
31 |
public function deactivate() { // plugin deactivation
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: karpstrucking, supporthero
|
3 |
Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons
|
4 |
Requires at least: 3.0.1
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -21,9 +21,12 @@ Yes.
|
|
21 |
|
22 |
= Will this block spam comments or registrations on my site? =
|
23 |
|
24 |
-
No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/).
|
25 |
|
26 |
== Changelog ==
|
|
|
|
|
|
|
27 |
= 1.0.3 =
|
28 |
* Added support for multi-page forms (thanks, @supporthero)
|
29 |
|
2 |
Contributors: karpstrucking, supporthero
|
3 |
Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons
|
4 |
Requires at least: 3.0.1
|
5 |
+
Tested up to: 5.5.1
|
6 |
+
Stable tag: 1.0.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
21 |
|
22 |
= Will this block spam comments or registrations on my site? =
|
23 |
|
24 |
+
No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/).
|
25 |
|
26 |
== Changelog ==
|
27 |
+
= 1.0.4 =
|
28 |
+
* Should fix 'jQuery undefined' errors
|
29 |
+
|
30 |
= 1.0.3 =
|
31 |
* Added support for multi-page forms (thanks, @supporthero)
|
32 |
|