inherit
40157
tyrantlytamale 627939549 tjhtmlmaniac
0
Sept 3, 2023 15:17:02 GMT -8
Tylr
The stale taste of recycled air.
2,964
April 2005
tyrantlytamale
|
Post by Tylr on Apr 4, 2012 5:53:29 GMT -8
This code will remove the "extras" column from the member list, where it lists PM, homepage, gender, AIM, email etc.
Main Footer Open Source
<script type="text/javascript"> <!-- //Remove the "Extras" column from the member list
if(location.href.match(/action=members/)){ var tr=document.getElementsByTagName('tr'); for(i=0;i<tr.length;i++){ if((tr.item(i).firstChild.className=='catbg' && tr.item(i).lastChild.innerHTML.match('Extras')) || (tr.item(i).firstChild.className=='windowbg' && tr.item(i).lastChild.innerHTML.match(/action=pmsend/))){ tr.item(i).lastChild.style.display='none'; } else if (tr.item(i).firstChild.colSpan=='6'){ tr.item(i).firstChild.colSpan='5'; }}} --> </script>
|
|