Indeed the notice is really annoying, I don’t like it as well, that’s what brought me here. webvitaly please remove that notice, I don’t want to downgrade the plugin to an earlier version just because of this. I know you wanna sell the PRO version so you can make money but still this is just not right. What if all plugins were as intrusive as yours???? What would I have in the Dashboard or Comment section? Hundreds of notifications and texts? That’s just ugly! I want a clean WordPress with not too many things in it.
PS Until webvitaly gets its wits back and removes this annoying banner you can manually remove it by going to anti-spam.php and deleting the following code:
if ( ! function_exists('antispam_admin_notice')):
function antispam_admin_notice() {
global $pagenow;
if ($pagenow == 'edit-comments.php'):
$antispam_stats = get_option('antispam_stats', array());
$blocked_total = $antispam_stats['blocked_total'];
?>
<div class="update-nag">
<p>
<?php echo $blocked_total; ?> spam comments were blocked by <a href="https://www.ads-software.com/plugins/anti-spam/">Anti-spam</a> plugin so far.
<a href="https://codecanyon.net/item/antispam-pro/6491169?ref=webvitaly" title="Anti-spam Pro">Upgrade to Pro</a>.
</p>
</div>
<?php
endif; // end of if($pagenow == 'edit-comments.php')
}
add_action('admin_notices', 'antispam_admin_notice');
endif; // end of antispam_admin_notice()