Akismet team please!
Add support to "Shows only the first line of spam" or some other feature, so less time is spent scrolling. Many sites getting 1,000-20,000 (or high) spam every day.
I think you help Akismet users. I recommended this point to you about year ago, but nothing happen.
Hope this comes to Akismet in next version?
You should send your request directly to Akismet:
http://akismet.com/contact/
I sent this point to Akismet team by contact form. :)
Thank you.
tellyworth
Member
Posted 2 years ago #
WordPress provides the Spam tab UI, not Akismet.
Are you referring to the comment content when viewing the list of spam comments? I also find it annoying that i have to view the whole spammy comment, i only need to see the first few lines usually.
It's pretty easy to adjust that without the change needing to made in the plugin itself.
One example.
add_action( 'admin_print_styles-edit-comments.php' , 'trim_spam_content_css' );
function trim_spam_content_css() {
?>
<style type="text/css">
tr.spam td.comment p+p+p { display:none!important; }
tr.spam td.comment p { height:1.4em!important;overflow:hidden!important }
tr.spam div.row-actions { display:block!important;color:#fff!important;visibility:visible!important; }
tr.spam div.row-actions span { font-size:0!important;padding:0!important }
tr.spam div.row-actions span a { font-size:13px!important;background-color:#f9f9f9!important;padding:.4em .7em!important; line-height:2em!important;border:1px solid #ccc!important;margin-right:2px!important; }
</style>
<?php
}
Could be done with jQuery just as easily...
Thank you for this tip, it works fine.
NOTE: These lines are not required, i just like making the moderation buttons easier to click and see.
/* Unrequired lines */
tr.spam div.row-actions { display:block!important;color:#fff!important;visibility:visible!important; }
tr.spam div.row-actions span { font-size:0!important;padding:0!important }
tr.spam div.row-actions span a { font-size:13px!important;background-color:#f9f9f9!important;padding:.4em .7em!important; line-height:2em!important;border:1px solid #ccc!important;margin-right:2px!important; }
Those lines can be removed if you prefer the original look of the moderation links.
Yes, i like original moderation look. So i delete this 3 line.
Thank you for sharing this tip. I just like this way better, after this i scrolling and scrolling all the time.