Forum Name | Topics | Posts | Last Post
and in the # of topics and # of posts column, it adds the word “threads” and “posts” after the number.
Main Footer
<script type=”text/javascript”>
<!–
/* remove Forum Name | Topics | Posts…
and add thread & post info by california */
var td=document.getElementsByTagName(“td”);
if(location.href.match(//?((index.cgi)???(action=(ma.+ad|logout|home))?(#.+)?)?$/)){
for(i=0;i<td.length;i++){
if(td.width==”1%” && td.innerHTML.match(/d/)){
if(td[i+1].width.match(/^(1|7)%$/)){
td.innerHTML+=”
threads”;
td.width=”8%”;
}else{
td.innerHTML+=”
posts”;
td.width=”7%”;
}
}
if(td.width==”8%” && !td.innerHTML.match(/thread/)){
td.width=”4%”;
}
if(td.className==”titlebg” && td.innerHTML.match(/Forum Name/i)){
td.parentNode.style.display=”none”;
}
}
}
//–>
</script>
It will say “1 threads” if you only have one topic or post. The solution: post another thread.
If you are using a “Divide/Seperate Categories” code then this code should be placed below that code.
If for some reason you don’t want the words “threads” and “posts”, leave out the blue part. I wouldn’t really recommend this as the numbers in those two columns become completely meaningless and the column widths get all screwed up, but people still keep asking for it for some reason.