This plugin is outdated and might not be supported anymore
Concise Antispam

Concise Antispam

Details
View on WordPress

Algorithm

  1. Plugin generates token on the backend side.
  2. Plugin adds hidden field for token in each form which will use method “POST” after rendering of the page.
  3. Plugin inserts token in the field after user’s interaction with site.

For developers

Antispam will automatically check submissions of the regular forms but ignores all AJAX requests.
If you want to change this behaviour, you can use filter concise_antispam_need_to_validate_token.
See example:

Disable Antispam for some forms:

add_filter("concise_antispam_need_to_validate_token", function($needToValidateToken) {
    if (!empty($_POST['do-not-check-antispam-token'])) {
        $needToValidateToken = false;
    }

    return $needToValidateToken;
});

You can also always manually call \Concise\Antispam::validateTokenOrDie() in your custom handler.

Formidable Forms integration

For proper work disable the honeypot checking in the forms

Details

Plugin code:
concise-antispam
Plugin version:
1.0.13
Outdated:
Yes
WP version:
4.1 or higher
PHP version:
5.6 or higher
Test up to WP version:
6.0.9
Total installations:
20
Last updated:
2022-11-01
Rating:
Times rated:
2
anti-spam
antispam
spam