Stephane Daury (stephdau)
Forum Replies Created
-
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Completely bypass AkismetI was going to suggest that maybe the Auto Approve Comments plugin could be of help, but I checked their code, and they actually don’t approve a comment if Akismet thought it’s spam.
On the other hand, maybe the approach they’re taking could be something you could replicate for your needs: they hook on
wp_insert_comment, set$comment['comment_approved']to 1, and update the comment.That wouldn’t bypass Akismet per se, though. It would just negate it flagging something as spam.
To completely bypass Akismet, you can also leverage the fact that it won’t do anything in the way of checking for spam if the API key isn’t configured.
So, in an mu-plugin (or your preferred way to auto-run code), you could:
if ( ! is_admin() ) { add_filter( 'akismet_get_api_key', '__return_null' ); }… for the users you want. That way, every time our plugin tries to use
Akismet::get_api_key(), it won’t get one, and won’t check the API, etc.The
is_admin()test is there so that those users still get access to Akismet’s functionalities in wp-admin (like in comment moderation, etc).Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Completely bypass AkismetHi @bedas.
There are multiple ways you can achieve this. Let me discuss a few of them with the team, and we’ll get back to you soon with some suggestions. π
Hi there,
Lack of minification reported by such tools isn’t really raising an issue per se, but more of an optimization suggestion.
Our view is that Javascript in plugins shouldn’t be minified, as we feel it obfuscates the code for anyone looking to learn, or contribute. Akismet being bundled with WP, many would-be developers start their path to learning plugin development by reading through our plugin’s code.
Note that there are many WP plugins, and server-level (Apache, nginx, etc) modules that can handle this automatically for your whole site.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Multiple debits for one licenseI see my colleagues have replied to your support request and provided you with the refunds you needed.
Will mark this as resolved. π
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Multiple debits for one licenseHi Adeline,
This sounds very strange, and that there was some sort of error with our payment provider (Stripe).
Could you please reach out to us via https://akismet.com/contact (choose “I have a billing question.”) with your API key and/or email address, and we’ll tend to this as quickly as possible, including refunding you for the extra charges.
With apologies, ad looking forward to resolving that unfortunate situation.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] API key for many sitesExample: you can have as many sites as you wish under our most basic “Plus” plan, so long as all of them amount to up to 10,000 spam API queries per month at most.
- This reply was modified 3 years, 8 months ago by Stephane Daury (stephdau).
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] API key for many sitesNo, one will work as well, but it should be paired with one of our commercial plans.
All keys can now serve an unlimited number of sites, and the plan you choose will depend on how much traffic you’re expecting. See https://docs.akismet.com/akismet-api-usage-limits/ for more info.
- This reply was modified 3 years, 8 months ago by Stephane Daury (stephdau).
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] API key for many sitesHi there,
One key will be able to serve as many sites as you want. In the case of a free key, both sites need to be non-commercial in nature, since those are only for personal use, as explained here: https://docs.akismet.com/getting-started/free-or-paid/
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] New feature not showing up in settingsHi there,
There is indeed no setting for it at the moment, but if one must, the feature can easily be disabled with a bit of code.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] WordPress access problem with askimetHi there,
I suspect the issue must have been caused by the WordPress plugin update process not having completed properly when you last upgraded (probably to our version 5.0). That would explain why reinstalling solved the issue.
If you like, you can reach out to us at https://akismet.com/contact/ with the details of the error, and we can investigate further.
Forum: Reviews
In reply to: [Akismet Anti-spam: Spam Protection] Cannot operate sites withoutThank you! We like to think this is True.
To Cut A Long Story Short, we try hard to not let any spam Through the Barricades.
π
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Spam Queue is now always empty!Hi Paul,
Since figuring out what might be happening could require some information that would not be desirable to post publicly (site URL, etc), could you please reach out to us from https://akismet.com/contact/ ? We’ll be happy to help you sort this out. π
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Span not caughtHi there.
Just to note that the Forminator team is aware of some bugs in their Akismet implementation, and are working on a fix.
Marking this as resolved after 2 weeks with no reply from the requester.