For anyone else following this thread, and wanting to also clean up their forum pages, then here are the other edits I made:
To remove Icon Legend and Posting Permissions from the Forum, I editted FORUMDISPLAY and commented the following
Code:
<!-- BLANK HERE
<div class="options_block_container">
<div class="options_block">
<div class="collapse">
<a class="collapse" id="collapse_forum_icon_legend" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="" /></a>
<h4><span class="optiontitle">{vb:rawphrase icon_legend}</span></h4>
</div>
<div id="forum_icon_legend" class="forum_info_block">
<dl id="icon_legends" class="forum_info_subblock icon_legends">
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_new-16.png" alt="{vb:rawphrase new_posts}" /></dt><dd>{vb:rawphrase new_posts}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread-16-{vb:stylevar right}.png" alt="{vb:rawphrase no_new_posts}" /></dt><dd>{vb:rawphrase no_new_posts}</dd>
<vb:if condition="$vboptions['usehotthreads']">
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_hot_new-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_new_posts}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_hot-16.png" alt="{vb:rawphrase more_than_x_replies_or_y_views, {vb:raw vboptions.hotnumberposts}, {vb:raw vboptions.hotnumberviews}}" /></dt><dd>{vb:rawphrase hot_thread_with_no_new_posts}</dd>
</vb:if>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_lock-16.png" alt="{vb:rawphrase closed_thread}" /></dt><dd>{vb:rawphrase thread_is_closed}</dd>
<dt><img src="{vb:stylevar imgdir_statusicon}/thread_dot-16-{vb:stylevar right}.png" alt="{vb:rawphrase thread_contains_a_message_written_by_you}" /></dt><dd>{vb:rawphrase you_have_posted_in_this_thread}</dd>
</dl>
</div>
</div>
<vb:if condition="$show['threadslist']">
<div class="options_block2">
<div class="collapse">
<a class="collapse" id="collapse_posting_rules" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="" /></a>
<h4><span class="optiontitle">{vb:rawphrase posting_rules}</span></h4>
</div>
<div id="posting_rules" class="forum_info_block">{vb:raw forumrules}</div>
</div>
</vb:if>
TO HERE -->
</div>
--------------- Added [DATE]1280441003[/DATE] at [TIME]1280441003[/TIME] ---------------
And to remove posting permissions from Thread View, edit the SHOWTHREAD template as follows:
Code:
</div>
</vb:if>
<!-- FROM HERE
<div class="options_block">
<h4 class="collapse">
<a class="collapse" id="collapse_posting_rules" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="" /></a>
<span class="optiontitle">{vb:rawphrase posting_rules}</span>
</h4>
<div id="posting_rules" class="thread_info_block">
{vb:raw forumrules}
</div>
</div>
--TO HERE>
</div>