Hello Dear,
Following edit is for CMS only -
Open template :
vbcms_searchresult_article_general
Remove/Comment following code in that template :
PHP Code:
<ul class="threadstats threadreplies td alt">
<li class="stats">
{vb:rawphrase comments}: {vb:raw replycount}
</li>
</ul>
It will remove that column. Now you want to shift alternate colors. For this, simply add css class "alt" to the next code block and remove css class "alt" from last code block.
You can simply do the following -
Search for :
PHP Code:
threadlastpost td
Replace with :
PHP Code:
threadlastpost td alt
Search for :
PHP Code:
threadpostedin td alt
Replace with :
PHP Code:
threadpostedin td
To remove same column from the forum posts search results -
Open template :
search_threadbit
Remove/Comment following code in that template :
PHP Code:
<ul class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
<li>{vb:rawphrase replies}: <a class="understate" href="misc.php?do=whoposted&t={vb:raw thread.threadid}" onclick="who({vb:raw thread.threadid}); return false;">{vb:raw thread.replycount}</a></li>
<br />
</ul>
Now again to shift alternate column colors -
Search for :
PHP Code:
threadlastpost td
replace with :
PHP Code:
threadlastpost td alt
Search for :
PHP Code:
threadpostedin td alt
Replace with :
PHP Code:
threadpostedin td
Now to remove same column from forumdisplay -
Open template :
FORUMDISPLAY
Remove/Comment following code in that template :
PHP Code:
<span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount}</span>
Remove/Comment following code in that template :
PHP Code:
<span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a></span>
Open template :
threadbit
Remove/Comment following code in that template :
Code:
<ul class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
<vb:if condition="$show['threadmoved']">
<li> </li>
<li> </li>
<vb:else />
<li>{vb:rawphrase replies}: <a href="misc.php?do=whoposted&t={vb:raw thread.threadid}" onclick="who({vb:raw thread.threadid}); return false;" class="understate">{vb:raw thread.replycount}</a></li>
<li style="visibility:hidden;">{vb:rawphrase views}: {vb:raw thread.views}</li>
</vb:if>
<li class="hidden">{vb:rawphrase rating}{vb:raw thread.rating} / 5</li>
</ul>
Search for :
PHP Code:
threadlastpost td
Replace with :
PHP Code:
threadlastpost td alt
Search for :
PHP Code:
threadimod td alt
replace with :
I hope this helps..
Cheers!!
Aditya Hajare