|
Post by CFP wolf on Sept 24, 2009 13:12:20 GMT -5
If you want to remove the "active users in the past 24 hours" info board, use this code:
<script type="text/javascript"> /* Hide Info Center Elements By Shamona Open Source */ var tr=document.getElementsByTagName("tr"); var remove2="Active Users In The Past 24 Hours"; if(location.href.match(/(cgi\??(#.+)?|com\/?|logout|change=.+?|sread)$/)){
for(i=tr.length-1;i>0;i--){ if(tr.cells[0].innerHTML.indexOf(remove2) != -1 && tr.cells[0].colSpan=="2"){ tr.style.display="none"; tr[i+1].style.display="none"; tr[i+2].style.display="none"; break; } } } </script>
Put this in your Global footer. No editing necessary.
|
|