I'm really enjoying akismet and it's doing a great job of catching those nasty spammers (touch wood).
But I want to change what it tells me in the dashboard - it's all very well knowing how many chunks of spam it's caught since I installed it but what I really want to know is how many chunks it has caught since I deleted the last lot.
I've identified the code in akismet.php that needs changing but I don't know what to change it to!
<?php
}
}
add_action('admin_menu', 'ksd_manage_page');
function akismet_stats() {
$count = get_option('akismet_spam_count');
if ( !$count )
return;
$path = plugin_basename(__FILE__);
echo '<h3>'.__('Spam').'</h3>';
echo '<p>'.sprintf(__('<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.'), 'http://akismet.com/', "edit.php?page=$path", $count).'</p>';
}
add_action('activity_box_end', 'akismet_stats');
?>
Any suggestions gratefully received!