<br><div><span class="gmail_quote">On 1/28/06, <b class="gmail_sendername">Ryan D'Baisse</b> &lt;<a href="mailto:ryan.dbaisse@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">ryan.dbaisse@gmail.com
</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
3. HOW TO REMOVE 'HOME PAGE' FROM TOPIC LISTING?<br>When someone visits the forum, they always see the Home Page as the<br>first topic.&nbsp;&nbsp;This is confusing.&nbsp;&nbsp;Is there any way to suppress this?<br>Maybe add text to the page for &quot;No topics in this forum yet&quot; if that
<br>is the only page?</blockquote></div><br>I just installed SimpleForum on a wiki running V2.0.12.<br>
<br>
On the HomePage of my forum's wikigroup, I changed the (:pagelist...:)
to specify <span style="font-weight: bold;">link=forum</span>. So along with including
commentboxstyled.php and forumstyled.php in the SimpleForum section,
near the bottom of my config.php, I have<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; $SearchPatterns['forum'][] = '!\.(All)?Recent(Changes|Uploads|Comments)$!';<br>
<div id="mb_15">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$SearchPatterns['forum'][] = '!\.Group(Print)?(Header|Footer|Attributes)$!';<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$SearchPatterns['forum'][] = '!\.HomePage$!';<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;$SearchPatterns['forum'][] = '!\.SideBar$!';<br>
which you see expands on the code for link=normal, additionally
excluding .HomePage and .SideBar from the list of forum topic pages.<br>
<br>
The approach of defining <span style="font-weight: bold;">link=forum</span> allows you to explicitly exclude all wikigroup pages that aren't actually topic pages.<br>
<br>
Another tweak I made was to put (:nogroupfooter:) at the top of my
RecentChanges page, since a visitor might see that page and be confused
by the forum's form.<br>
</div>