Remove "Forum Contains New Posts" from category view of forums

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • transparent
    New Member
    • Mar 2008
    • 14
    • 3.6.x

    Remove "Forum Contains New Posts" from category view of forums

    How do I remove the "Forum Contains New Posts" & "Forum Contains No New Posts" text & icons?

    I have it removed from the forumhome page but I still see it when I click a category and it list all the forums under it. Below the list of forums is where the icons appear. I'm not sure which template that is.

    Thx for the help.
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Display Templates -> FORUMDISPLAY

    Remove the red code:

    Code:
    <!-- icon key -->
    <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>
    <tr>
    	<td><img src="$stylevar[imgdir_statusicon]/thread_lock.gif" alt="$vbphrase[closed_thread]" border="0" /></td>
    	<td class="smallfont">$vbphrase[thread_is_closed]</td>
    	<if condition="$show['dotthreads']">
    		<td><img src="$stylevar[imgdir_statusicon]/thread_dot.gif" alt="$vbphrase[thread_contains_a_message_written_by_you]" border="0" /></td>
    		<td class="smallfont">$vbphrase[you_have_posted_in_this_thread]</td>
    	<else />
    		<td colspan="2">&nbsp;</td>
    	</if>
    </tr>
    </table>
    [color=red]<else />
    <table cellpadding="0" cellspacing="2" border="0" width="100%">
    <tr valign="bottom">
    	<td>
    		<table cellpadding="2" cellspacing="0" border="0">
    		<tr>
    			<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
    			<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
    		</tr>
    		<tr>
    			<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
    			<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
    		</tr>
    		<if condition="$vboptions['showlocks']">
    		<tr>
    			<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
    			<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
    		</tr>
    		</if>
    		</table>
    	</td>
    </tr>
    </table>[/color]
    </if>
    <!-- / icon key -->

    Comment

    widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
    Working...