Plugin Directory

Changeset 2867494


Ignore:
Timestamp:
02/18/2023 09:40:46 PM (3 years ago)
Author:
gravityview
Message:

Version 1.3

Location:
gravity-forms-zero-spam
Files:
5 added
5 edited

Legend:

Unmodified
Added
Removed
  • gravity-forms-zero-spam/tags/1.2.3/gravityforms-zero-spam-form-settings.php

    r2867489 r2867494  
    1111 */
    1212class GF_Zero_Spam_AddOn extends GFAddOn {
    13 
    14     protected $_slug = 'gf-zero-spam';
    15     protected $_path = GF_ZERO_SPAM_BASENAME;
    16     protected $_full_path = __FILE__;
    17     protected $_title = 'Gravity Forms Zero Spam';
    18     protected $_short_title = 'Zero Spam';
    1913
    2014    public function init() {
     
    8377        return $fields;
    8478    }
    85 
    86     /**
    87      * Logging is not currently supported.
    88      *
    89      * @param array $plugins An array of plugins that support logging.
    90      *
    91      * @return array
    92      */
    93     public function set_logging_supported( $plugins ) {
    94 
    95         return $plugins;
    96     }
    97 
    9879}
    9980
  • gravity-forms-zero-spam/tags/1.2.3/gravityforms-zero-spam.php

    r2867489 r2867494  
    1515    die;
    1616}
    17 
    18 define( 'GF_ZERO_SPAM_BASENAME', plugin_basename( __FILE__ ) );
    1917
    2018// clean up after ourselves
     
    123121        }
    124122
    125         $supports_context = method_exists( 'GFFormDisplay', 'get_submission_context' );
    126         if ( $supports_context && GFFormDisplay::get_submission_context() !== 'form-submit' ) {
    127             return $is_spam;
    128         }
    129 
    130123        // This was not submitted using a web form; created using API
    131         if ( ! $supports_context && ! did_action( 'gform_pre_submission' ) ) {
     124        if ( ! did_action( 'gform_pre_submission' ) ) {
    132125            return $is_spam;
    133126        }
  • gravity-forms-zero-spam/tags/1.2.3/readme.txt

    r2867489 r2867494  
    33Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, add-ons, honeypot
    44Requires at least: 3.0.1
    5 Tested up to: 6.2
     5Tested up to: 6.0.1
    66Stable tag: trunk
    77Requires PHP: 5.2.6
     
    4040Note: When an entry is marked as Spam, it also prevents use of the configured confirmation. Users submitted a entry marked as Spam will see the default Gravity Forms “Thanks for contacting us! We will get in touch with you shortly.” confirmation text instead.
    4141
    42 = I have Gravity Forms 2.7 installed. Do I need this plugin? =
    43 
    44 Gravity Forms 2.7 added functionality that has similar features to this plugin, but we're adding additional features soon—keep this plugin installed!
    45 
    4642= Does this plugin work in combination with other CAPTCHAs, honeypot fields, or spam blocker plugins? =
    4743
     
    6157= What version of Gravity Forms does this work with? =
    6258
    63 This works with all Gravity Forms releases after v2.3 (released June 2017).
     59This works with all Gravity Forms releases after v2.3 (released June 2017). The plugin also blocks bots in the latest Gravity Forms 2.5!
    6460
    6561= Will this block spam comments or registrations on my site? =
     
    10298== Changelog ==
    10399
    104 = 1.2.3 on February 18, 2023 =
     100= 1.2.3 on August 18, 2022 =
    105101
    106 Gravity Forms 2.7 added improved spam blocking in 2.7, but we're adding additional features soon—keep this plugin installed! ❤️
    107 
    108 * Fixed: Gravity Forms 2.7 support. Thanks, Richard!
    109 * Fixed: PHP 8.0 warnings. Thanks, Richard!
    110 * Added: Support for API submissions (which don't have a form submit action). Thanks, Richard!
    111 * Tweak: Changed the autocomplete on the hidden field to `new-password` instead of `off`. Thanks for the suggestion, Ross!
    112 * Tested with WordPress 6.2
     102* Tweak: Changed the autocomplete on the hidden field to `new-password` instead of `off`. Thanks, Ross!
    113103
    114104= 1.2.2 on August 11, 2022 =
  • gravity-forms-zero-spam/trunk/gravityforms-zero-spam.php

    r2867489 r2867494  
    44 * Plugin URI:        https://www.gravitykit.com?utm_source=plugin&utm_campaign=zero-spam&utm_content=pluginuri
    55 * Description:       Enhance Gravity Forms to include effective anti-spam measures—without using a CAPTCHA.
    6  * Version:           1.2.3
     6 * Version:           1.3
    77 * Author:            GravityKit
    88 * Author URI:        https://www.gravitykit.com?utm_source=plugin&utm_campaign=zero-spam&utm_content=authoruri
  • gravity-forms-zero-spam/trunk/readme.txt

    r2867489 r2867494  
    102102== Changelog ==
    103103
    104 = 1.2.3 on February 18, 2023 =
     104= 1.3 on February 18, 2023 =
    105105
    106 Gravity Forms 2.7 added improved spam blocking in 2.7, but we're adding additional features soon—keep this plugin installed! ❤️
     106Gravity Forms 2.7 added improved spam blocking in 2.7. Keep this plugin installed—it won't hurt, and we're about to add some great new features soon! ❤️ Thanks to Richard Wawrzyniak for the code updates in this release.
    107107
    108 * Fixed: Gravity Forms 2.7 support. Thanks, Richard!
    109 * Fixed: PHP 8.0 warnings. Thanks, Richard!
    110 * Added: Support for API submissions (which don't have a form submit action). Thanks, Richard!
     108* Added: Support for API submissions (which don't have a form submit action)
     109* Fixed: Gravity Forms 2.7 support
     110* Fixed: PHP 8.0 warnings
     111* Tested with WordPress 6.2
     112
     113= 1.2.3 on August 11, 2022 =
     114
    111115* Tweak: Changed the autocomplete on the hidden field to `new-password` instead of `off`. Thanks for the suggestion, Ross!
    112 * Tested with WordPress 6.2
    113116
    114117= 1.2.2 on August 11, 2022 =
Note: See TracChangeset for help on using the changeset viewer.