PDA

View Full Version : remove Forum Contains New/old Posts


cindy helmond
07-23-2008, 04:38 PM
how to remove the Forum Contains New/old Posts status below the forum ? icons and text
thx

calorie
07-23-2008, 05:02 PM
Look for <!-- icons and login code --> in the vB FORUMHOME template, and just under that is a nested table that you can remove from the template.

cindy helmond
07-23-2008, 05:11 PM
Look for <!-- icons and login code --> in the vB FORUMHOME template, and just under that is a nested table that you can remove from the template.


thx !! for help

cindy helmond
08-06-2008, 12:25 PM
one question again and how to remove this ? i mean in the topics under
see att
thx

Princeton
08-06-2008, 12:36 PM
that information can be found int he FORUMDISPLAY template

look for
<!-- icon key -->

cindy helmond
08-06-2008, 02:14 PM
how to remove the Forum Contains New/old Posts status below the forum ? icons and text
in the photopost its still there is that cant find this :

<!-- icons and login code --> at the templates from the photopost dir .
any help?
thx

RobbieZ
11-24-2009, 06:32 PM
Has this never been answered?

The best way to do it. Find the images u want removing, right click and view images, you should see the forumpath with the filename after it.

forum_old_lock.png

AdminCP>Styles & Templates>Search in templates. Use the above string

As Princeton and Cindy stated they will be most likely in a table nest under this >

<!-- icon key -->

It looks like from your images you want thread_hot.gif removing. You will need to remove this also >


<if condition="$show['threadslist']">
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/thread_new.gif" alt="$vbphrase[new_posts]" border="0" /></td>
<td class="smallfont">$vbphrase[new_posts]</td>
<if condition="$vboptions['usehotthreads']">
<td><img src="$stylevar[imgdir_statusicon]/thread_hot_new.gif" alt="<phrase 1="$vboptions[hotnumberposts]" 2="$vboptions[hotnumberviews]">$vbphrase[more_than_x_replies_or_y_views]</phrase>" border="0" /></td>
<td class="smallfont">$vbphrase[hot_thread_with_new_posts]</td>
<else />
<td colspan="2">&nbsp;</td>
</if>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/thread.gif" alt="$vbphrase[no_new_posts]" border="0" /></td>
<td class="smallfont">$vbphrase[no_new_posts]</td>
<if condition="$vboptions['usehotthreads']">
<td><img src="$stylevar[imgdir_statusicon]/thread_hot.gif" alt="<phrase 1="$vboptions[hotnumberposts]" 2="$vboptions[hotnumberviews]">$vbphrase[more_than_x_replies_or_y_views]</phrase>" border="0" /></td>
<td class="smallfont">$vbphrase[hot_thread_with_no_new_posts]</td>
<else />
<td colspan="2">&nbsp;</td>
</if>
</tr>