Plugin Directory

Changeset 2380174


Ignore:
Timestamp:
09/12/2020 08:00:20 PM (6 years ago)
Author:
karpstrucking
Message:

version 1.0.4

Location:
gravity-forms-zero-spam
Files:
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • gravity-forms-zero-spam/tags/1.0.4/gravityforms-zero-spam.php

    r1975136 r2380174  
    2626    class GF_Zero_Spam {
    2727        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
     28            add_action( 'wp_footer', array( $this, 'add_key_field' ), 9999 ); // add key injection JS to the bottom of the page
    2929            add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms
    3030        }
  • gravity-forms-zero-spam/tags/1.0.4/readme.txt

    r2348504 r2380174  
    33Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons
    44Requires at least: 3.0.1
    5 Tested up to: 5.4.2
    6 Stable tag: 1.0.3
     5Tested up to: 5.5.1
     6Stable tag: 1.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222= Will this block spam comments or registrations on my site? =
    2323
    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.
     24No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/).
    2525
    2626== Changelog ==
     27= 1.0.4 =
     28* Compatibility with late-loading jQuery
     29
    2730= 1.0.3 =
    2831* Added support for multi-page forms (thanks, @supporthero)
  • gravity-forms-zero-spam/trunk/gravityforms-zero-spam.php

    r1975136 r2380174  
    2626    class GF_Zero_Spam {
    2727        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
     28            add_action( 'wp_footer', array( $this, 'add_key_field' ), 9999 ); // add key injection JS to the bottom of the page
    2929            add_filter( 'gform_entry_is_spam', array( $this, 'check_key_field' ) ); // add our validation check to all forms
    3030        }
  • gravity-forms-zero-spam/trunk/readme.txt

    r2348504 r2380174  
    33Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, addons, add-ons
    44Requires at least: 3.0.1
    5 Tested up to: 5.4.2
    6 Stable tag: 1.0.3
     5Tested up to: 5.5.1
     6Stable tag: 1.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222= Will this block spam comments or registrations on my site? =
    2323
    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.
     24No. For that, we recommend Ben Marshall‘s [WordPress Zero Spam plugin](https://wordpress.org/plugins/zero-spam/).
    2525
    2626== Changelog ==
     27= 1.0.4 =
     28* Compatibility with late-loading jQuery
     29
    2730= 1.0.3 =
    2831* Added support for multi-page forms (thanks, @supporthero)
Note: See TracChangeset for help on using the changeset viewer.