View Full Version : How do i remove forums no post / new post images and replace with text?
mcyates
08-12-2009, 03:08 PM
How do i remove forums no post / new post images and replace with text?
All I want is text saying OLD or NEW
It will speed up the loading of my page.
Thanks
Lynne
08-12-2009, 04:14 PM
You would have to modify the template to do that. (probably both forumhome_forumbit_level1_post and forumhome_forumbit_level2_post) Find:
<td class="alt2"><img src="$stylevar[imgdir_statusicon]/$forum[imageprefix]forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>
Replace with something like:
<td class="alt2">$forum[statusicon]</td>
You may want to write a plugin to modify the statusicon 'text' or just write a condition in the template to do it. ie:
<td class="alt2"><if condition="$forum[statusicon] == 'old'">OLD<else /><if condition="$forum[statusicon] == 'new'">NEW<else />WHATEVER</if></if></td>
mcyates
08-12-2009, 04:43 PM
thank you very much
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.