Quote from Osayidan;182423:
It's a built in function that I don't think can be disabled, and for good reason. You might not like what a staff member says during their casual every day posting but everyone needs to be able to see what they're saying when they have their 'moderator hat' on.
It can be changed. You can make it so only certain groups can't be ignored. You could set it to admins only, or admins and mods (default), or only a special group that can't be ignored, etc.
Oh and if you don't want to see posts you've blocked, I made this little greasemonkey script...
[code]// ==UserScript==
// @name remove blocked posts
// @namespace Jen
// @description removes blocked posts entirely
// @include http://*
// ==/UserScript==
(function() {
var match_re = /This message is hidden because \<strong\>/gi;
var tabs = document.getElementsByTagName("table");
for (var i=0; i<tabs.length; i++) {
if (tabs[i].innerHTML.match(match_re)) {
tabs[i].parentNode.removeChild(tabs[i]);
}
}
}
)();[/code]