Changeset 2867494
- Timestamp:
- 02/18/2023 09:40:46 PM (3 years ago)
- Location:
- gravity-forms-zero-spam
- Files:
-
- 5 added
- 5 edited
-
tags/1.2.3/gravityforms-zero-spam-form-settings.php (modified) (2 diffs)
-
tags/1.2.3/gravityforms-zero-spam.php (modified) (2 diffs)
-
tags/1.2.3/readme.txt (modified) (4 diffs)
-
tags/1.3 (added)
-
tags/1.3/LICENSE (added)
-
tags/1.3/gravityforms-zero-spam-form-settings.php (added)
-
tags/1.3/gravityforms-zero-spam.php (added)
-
tags/1.3/readme.txt (added)
-
trunk/gravityforms-zero-spam.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-zero-spam/tags/1.2.3/gravityforms-zero-spam-form-settings.php
r2867489 r2867494 11 11 */ 12 12 class 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';19 13 20 14 public function init() { … … 83 77 return $fields; 84 78 } 85 86 /**87 * Logging is not currently supported.88 *89 * @param array $plugins An array of plugins that support logging.90 *91 * @return array92 */93 public function set_logging_supported( $plugins ) {94 95 return $plugins;96 }97 98 79 } 99 80 -
gravity-forms-zero-spam/tags/1.2.3/gravityforms-zero-spam.php
r2867489 r2867494 15 15 die; 16 16 } 17 18 define( 'GF_ZERO_SPAM_BASENAME', plugin_basename( __FILE__ ) );19 17 20 18 // clean up after ourselves … … 123 121 } 124 122 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 130 123 // 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' ) ) { 132 125 return $is_spam; 133 126 } -
gravity-forms-zero-spam/tags/1.2.3/readme.txt
r2867489 r2867494 3 3 Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, add-ons, honeypot 4 4 Requires at least: 3.0.1 5 Tested up to: 6. 25 Tested up to: 6.0.1 6 6 Stable tag: trunk 7 7 Requires PHP: 5.2.6 … … 40 40 Note: 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. 41 41 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 46 42 = Does this plugin work in combination with other CAPTCHAs, honeypot fields, or spam blocker plugins? = 47 43 … … 61 57 = What version of Gravity Forms does this work with? = 62 58 63 This works with all Gravity Forms releases after v2.3 (released June 2017). 59 This works with all Gravity Forms releases after v2.3 (released June 2017). The plugin also blocks bots in the latest Gravity Forms 2.5! 64 60 65 61 = Will this block spam comments or registrations on my site? = … … 102 98 == Changelog == 103 99 104 = 1.2.3 on February 18, 2023=100 = 1.2.3 on August 18, 2022 = 105 101 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! 113 103 114 104 = 1.2.2 on August 11, 2022 = -
gravity-forms-zero-spam/trunk/gravityforms-zero-spam.php
r2867489 r2867494 4 4 * Plugin URI: https://www.gravitykit.com?utm_source=plugin&utm_campaign=zero-spam&utm_content=pluginuri 5 5 * Description: Enhance Gravity Forms to include effective anti-spam measures—without using a CAPTCHA. 6 * Version: 1. 2.36 * Version: 1.3 7 7 * Author: GravityKit 8 8 * 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 102 102 == Changelog == 103 103 104 = 1. 2.3 on February 18, 2023 =104 = 1.3 on February 18, 2023 = 105 105 106 Gravity Forms 2.7 added improved spam blocking in 2.7 , but we're adding additional features soon—keep this plugin installed! ❤️106 Gravity 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. 107 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! 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 111 115 * Tweak: Changed the autocomplete on the hidden field to `new-password` instead of `off`. Thanks for the suggestion, Ross! 112 * Tested with WordPress 6.2113 116 114 117 = 1.2.2 on August 11, 2022 =
Note: See TracChangeset
for help on using the changeset viewer.