Anyone know how to do this? I am not sure if it is just an HTML change on the forum home page or something simple?
Well I found this from another hack that is close to what I want, but I still want to show Replies and only on the forum home...
is this right?
PHP Code:
FIND
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
DELETE IT
FIND
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
REPLACE WITH
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">4<else />3</if>"><div class="smallfont"><strong>
**********************************
forumhome_forumbit_level1_post
FIND
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
DELETE IT
**********************************
forumhome_forumbit_level2_post
FIND
<td class="alt1">$forum[threadcount]</td>
<td class="alt2">$forum[replycount]</td>
DELETE IT
**************************************
FORUMDISPLAY
FIND
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
DELETE IT
FIND
<td class="thead" align="center" nowrap="nowrap"><span style="white-space:nowrap">$vbphrase[replies]</span></td>
<td class="thead" align="center" nowrap="nowrap"><span style="white-space:nowrap">$vbphrase[views]</span></td>
DELETE IT
FIND
<td class="thead" align="center" nowrap="nowrap"><span style="white-space:nowrap"><a href="$sorturl&order=desc&sort=replycount" rel="nofollow">$vbphrase[replies]</a> $sortarrow[replycount]</span></td>
<td class="thead" align="center" nowrap="nowrap"><span style="white-space:nowrap"><a href="$sorturl&order=desc&sort=views" rel="nofollow">$vbphrase[views]</a> $sortarrow[views]</span></td>
DELETE IT
**************************
threadbit
FIND
<td class="alt2"><input type="checkbox" name="deletebox[$subscribethread[$threadid]]" id="sub$subscribethread[$threadid]" value="yes" /></td>
<else />
<td class="alt1" align="center"><if condition="$show['threadmoved']">-<else /><a href="#" onclick="who($thread[threadid]); return false;">$thread[replycount]</a></if></td>
<td class="alt2" align="center">$thread[views]</td>
DELETE IT
*************************