विवरण
Algorithm
- Plugin generates token on the backend side.
- Plugin adds hidden field for token in each form which will use method “POST” after rendering of the page.
- 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
स्थापना
- Upload plugin to plugins directory
- Active plugin through the “Plugins” menu in WordPress
प्रश्नोत्तर
Please, report about any bug to developer@concise-studio.com
समीक्षाहरू
योगदानकर्ता र डेभलपरहरू
“Concise Antispam” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका छन्।
योगदानकर्ताहरू“Concise Antispam” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्
विकासमा रुचि छ?
आरएसएस द्वारा कोड ब्राउज गर्नुहोस्, एसभीएन रिपजिटरी हेर्नुहोस्, वा विकास लग को सदस्यता लिनुहोस्।