Changeset 2380174
- Timestamp:
- 09/12/2020 08:00:20 PM (6 years ago)
- Location:
- gravity-forms-zero-spam
- Files:
-
- 3 edited
- 2 copied
-
tags/1.0.4 (copied) (copied from gravity-forms-zero-spam/trunk)
-
tags/1.0.4/gravityforms-zero-spam.php (modified) (1 diff)
-
tags/1.0.4/readme.txt (copied) (copied from gravity-forms-zero-spam/trunk/readme.txt) (2 diffs)
-
trunk/gravityforms-zero-spam.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-zero-spam/tags/1.0.4/gravityforms-zero-spam.php
r1975136 r2380174 26 26 class GF_Zero_Spam { 27 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 page28 add_action( 'wp_footer', array( $this, 'add_key_field' ), 9999 ); // add key injection JS to the bottom of the page 29 29 add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms 30 30 } -
gravity-forms-zero-spam/tags/1.0.4/readme.txt
r2348504 r2380174 3 3 Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons 4 4 Requires at least: 3.0.1 5 Tested up to: 5. 4.26 Stable tag: 1.0. 35 Tested up to: 5.5.1 6 Stable tag: 1.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 = Will this block spam comments or registrations on my site? = 23 23 24 No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/). Note: As of version 1.5, Ben’s plugin includes support for Gravity Forms; if you install his plugin, you should remove ours.24 No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/). 25 25 26 26 == Changelog == 27 = 1.0.4 = 28 * Compatibility with late-loading jQuery 29 27 30 = 1.0.3 = 28 31 * Added support for multi-page forms (thanks, @supporthero) -
gravity-forms-zero-spam/trunk/gravityforms-zero-spam.php
r1975136 r2380174 26 26 class GF_Zero_Spam { 27 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 page28 add_action( 'wp_footer', array( $this, 'add_key_field' ), 9999 ); // add key injection JS to the bottom of the page 29 29 add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms 30 30 } -
gravity-forms-zero-spam/trunk/readme.txt
r2348504 r2380174 3 3 Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons 4 4 Requires at least: 3.0.1 5 Tested up to: 5. 4.26 Stable tag: 1.0. 35 Tested up to: 5.5.1 6 Stable tag: 1.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 = Will this block spam comments or registrations on my site? = 23 23 24 No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/). Note: As of version 1.5, Ben’s plugin includes support for Gravity Forms; if you install his plugin, you should remove ours.24 No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/). 25 25 26 26 == Changelog == 27 = 1.0.4 = 28 * Compatibility with late-loading jQuery 29 27 30 = 1.0.3 = 28 31 * Added support for multi-page forms (thanks, @supporthero)
Note: See TracChangeset
for help on using the changeset viewer.