Combine Threads and Posts Column
This thread is in the Modification Graveyard.
If you use this enhancement, remember to click MARK AS INSTALLED for support! Thank you!
This is a small mod which combines your threads and posts into a single column. With this enhancement, it saves a few pixels on your forum width, and the small differentiation is also aesthetically pleasing. This requires a couple simple template modifications. Installation 1. In FORUMHOME, find the following: Code:
<td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> Code:
<td class="thead">$vbphrase[threads]/$vbphrase[posts]</td> 4. In forumhome_forumbit_level2_post, find the following: Code:
<td class="alt1">$forum[threadcount]</td> <td class="alt2">$forum[replycount]</td> Code:
<td class="alt1"><small>$vbphrase[threads]: $forum[threadcount]<br /> $vbphrase[posts]: $forum[replycount]</small></td> 7. In forumhome_forumbit_level1_nopost, find the following: Code:
<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if> Code:
<if condition="$vboptions[showmoderatorcolumn]">5<else />4</if> Live Demo http://www.castbuzz.com/community/index.php Download No files for download. |