<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: subforum</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: subforum</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 05:48:10 +0000</pubDate>

<item>
<title>musnake on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-20152</link>
<pubDate>Thu, 23 Oct 2008 14:03:44 +0000</pubDate>
<dc:creator>musnake</dc:creator>
<guid isPermaLink="false">20152@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah, I like that.  I guess a template option for show/supress child fora would be better.  Then you could use that db option...&#60;br /&#62;
I'm still choosing templates but will work on it.&#60;br /&#62;
This is what I had based on _ck_'s snippets:&#60;br /&#62;
The theme's front-page.php just after the forum list titles:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/tr&#38;gt;
&#38;lt;?php $forum_id = 0; //musnake: supress child fora: &#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-20150&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-20150&#60;/a&#62; ?&#38;gt;
&#38;lt;?php $forum_parent=$forum_id; //musnake ?&#38;gt;
&#38;lt;?php while ( bb_forum() ) : ?&#38;gt;
&#38;lt;?php if ($GLOBALS[&#38;#39;forum&#38;#39;]-&#38;gt;forum_parent==$forum_parent) { //musnake ?&#38;gt;

&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;
	&#38;lt;td&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;div class=&#38;quot;nest&#38;quot;&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php forum_description(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;/div&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_topics(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=num&#38;gt;&#38;lt;?php echo $GLOBALS[&#38;#39;forum&#38;#39;]-&#38;gt;views; ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;?php } //musnake ?&#38;gt;
&#38;lt;?php endwhile; ?&#38;gt;
&#38;lt;/table&#38;gt;
&#38;lt;?php endif; // bb_forums() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That theme didn't have the breadcrumbs I wanted, so after much searching (including PHPXref!) I found this: which gets put in your theme's forum.php:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;h3 class=&#38;quot;bbcrumb&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bb_option(&#38;#39;uri&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php bb_option(&#38;#39;name&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt; &#38;lt;?php bb_forum_bread_crumb(); ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Hope that helps.  Thanks All.&#60;/p&#62;
&#60;p&#62;Oh, just to be clear, the //musnake are to point out where the changes are, not to claim any credit!
&#60;/p&#62;</description>
</item>
<item>
<title>musnake on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-20150</link>
<pubDate>Thu, 23 Oct 2008 12:35:16 +0000</pubDate>
<dc:creator>musnake</dc:creator>
<guid isPermaLink="false">20150@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;True d'at.  Although I think &#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforms-on-your-home-page&#34;&#62;this may be what _ck_ was working on...&#60;/a&#62; I see the global declaration in there...  I'll try it...&#60;/p&#62;
&#60;p&#62;Nope.  All fora disappear.  I'll look into where this $forum_id comes from...I'm learning.&#60;/p&#62;
&#60;p&#62;Huh.  Setting $forum_parent=0;  (or $forum_id = 0;) seems to do what I want.  Hardcoding.  Yuck.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding subforums"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums#post-20146</link>
<pubDate>Thu, 23 Oct 2008 07:21:16 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20146@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You mean not list them in the main list?&#60;br /&#62;
(not actually completely hide them)&#60;/p&#62;
&#60;p&#62;The same approach should work in 1.0 as 0.9&#60;br /&#62;
I showed the exact code to do it in a topic around here somewhere.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforms-on-your-home-page&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforms-on-your-home-page&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17436&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17436&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Hiding subforums"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums#post-20126</link>
<pubDate>Wed, 22 Oct 2008 13:03:09 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20126@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hide them where? And for what purpose?  Just curious what you're trying to do.  Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>pinay007 on "Hiding subforums"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums#post-20118</link>
<pubDate>Wed, 22 Oct 2008 08:22:23 +0000</pubDate>
<dc:creator>pinay007</dc:creator>
<guid isPermaLink="false">20118@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Using the search function, none of the threads that came up apply to 0.9. &#60;/p&#62;
&#60;p&#62;How do I hide subforums in this version?
&#60;/p&#62;</description>
</item>
<item>
<title>beernews on "Count subforum posts in parent count?"</title>
<link>http://bbpress.org/forums/topic/count-subforum-posts-in-parent-count#post-19640</link>
<pubDate>Sun, 05 Oct 2008 16:43:30 +0000</pubDate>
<dc:creator>beernews</dc:creator>
<guid isPermaLink="false">19640@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Would love to see an admin option for this in the next release though not a priority given you can stay on top of proper tagging which will provide a similar categorization effect.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-18762</link>
<pubDate>Thu, 28 Aug 2008 19:44:28 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18762@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's too bad the pastebin code is no longer available. :-(
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17527</link>
<pubDate>Tue, 22 Jul 2008 15:57:08 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17527@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You might want to start a new topic for that new topic, now that you have the subforums thing sorted.&#60;/p&#62;
&#60;p&#62;You situation sounds like this one from a while ago&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/how-do-i-do-this&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/how-do-i-do-this&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I am not sure what the best way to do it is.  Did you try making the forums and subforums all in one forum installation, and see what the actual loading time is?  That would be easiest for user login integration I think.&#60;/p&#62;
&#60;p&#62;Can you imagine updating 50 forum installations?
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17515</link>
<pubDate>Tue, 22 Jul 2008 10:17:42 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17515@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi! Thank you _ck_ and chrishajer. It works wonderfully now.&#60;/p&#62;
&#60;p&#62;I have a few more questions if you don't mind:&#60;/p&#62;
&#60;p&#62;1. Is there any way to optimize bbPress for extremely large forums? My forum will have 50 forums, followed by subforums for cities, followed by 5 subforums for each city. (I've thought it over through as well, and this is the best way to organize it)&#60;br /&#62;
2. If there isn't, is there a way I can create 50 forums that are different, one for each state, and have them running congruently? Would that alleviate the loading time and the strain on the database?&#60;br /&#62;
3. Is there any way to have many separate forums that are sharing the same users table? They are going to be separate forums. I just want to have it so that 1) if one person is logged into one bbpress, they are also logged into another, and 2) if they are registered on one, they are also registered at another. Is there a way to do this?&#60;/p&#62;
&#60;p&#62;What would be the best way to handle this? It's just that when I release the site, I want to have every section and everything up so that I don't have to worry about expanding. I just want to do everything now (and having a lot of free time during the summer doesn't hurt either!)&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17509</link>
<pubDate>Tue, 22 Jul 2008 03:24:27 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17509@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I uploaded &#60;a href=&#34;http://pastebin.com/m3cef6607&#34;&#62;that code&#60;/a&#62; to a test installation I have and it appears to work fine.  Check it out:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://riversideinfo.org/bbpress-0902/&#34; rel=&#34;nofollow&#34;&#62;http://riversideinfo.org/bbpress-0902/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17483</link>
<pubDate>Mon, 21 Jul 2008 12:50:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17483@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just put the code on a test site and it works for me.&#60;br /&#62;
Sub forums show, but not sub sub forums.&#60;/p&#62;
&#60;p&#62;You used &#60;a href=&#34;http://pastebin.com/m3cef6607&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m3cef6607&#60;/a&#62; ???&#60;/p&#62;
&#60;p&#62;The sub sub forums you are seeing are indented?&#60;br /&#62;
Make sure you uploaded and are using the correct file.
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17478</link>
<pubDate>Mon, 21 Jul 2008 05:55:19 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17478@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Now the subforums' subforums show, but along with the subforums. It displays just like the original forum.php now. :(
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17476</link>
<pubDate>Mon, 21 Jul 2008 04:46:03 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17476@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hang on while I double check the code, apparently I guessed wrong somewhere or missed something.&#60;/p&#62;
&#60;p&#62;update: perhaps it's because $forum is not declared as a global in the template when when it loops through the forums it doesn't see the changed parent.&#60;/p&#62;
&#60;p&#62;Try this update:&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/m3cef6607&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m3cef6607&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17468</link>
<pubDate>Mon, 21 Jul 2008 03:25:50 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17468@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The code that was on my original forum.php is&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/m3c1eab2b&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m3c1eab2b&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;_ck_'s version that I tried using (it didn't pop up any forums at all when I tried it) is&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/m6e93abf8&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m6e93abf8&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17466</link>
<pubDate>Mon, 21 Jul 2008 03:15:20 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17466@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Can you post the code you're using at pastebin so we can take a look at what's happening?
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17453</link>
<pubDate>Sun, 20 Jul 2008 20:22:26 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17453@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Okay, so I tried using the code. And it just makes every subforum and its subforums disappear. So everything is there, but with no links to any forums.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17444</link>
<pubDate>Sun, 20 Jul 2008 02:56:42 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17444@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Here you go:&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/m6e93abf8&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m6e93abf8&#60;/a&#62;&#60;br /&#62;
(you can copy the plain text from the lower part)&#60;/p&#62;
&#60;p&#62;The lines added are 49, 51 and 57.&#60;br /&#62;
It's untested but in theory should work.&#60;br /&#62;
Let me know what happens.
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17443</link>
<pubDate>Sat, 19 Jul 2008 21:16:54 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17443@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have already changed it.&#60;/p&#62;
&#60;p&#62;Here is my forum.php:&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/m3c1eab2b&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/m3c1eab2b&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I appreciate the help!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17442</link>
<pubDate>Sat, 19 Jul 2008 19:19:49 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17442@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You have to edit the forum.php in your theme's template.&#60;/p&#62;
&#60;p&#62;Are you using the built in Kakumei theme or have you already changed it?
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17441</link>
<pubDate>Sat, 19 Jul 2008 17:02:44 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17441@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you for the response. I have very, very limited coding experience. Can you explain further please? Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17436</link>
<pubDate>Sat, 19 Jul 2008 15:20:01 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17436@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The way I hide sub-forums on the front-page is to wrap the code that lists the forums in this simple code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php if (!$forum-&#38;gt;forum_parent) { ?&#38;gt;&#60;/code&#62;  &#38;lt;-- this&#60;br /&#62;
&#60;code&#62;&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;&#60;/code&#62;&#60;br /&#62;
blah blah&#60;br /&#62;
&#60;code&#62;&#38;lt;/tr&#38;gt;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;&#38;lt;?php } ?&#38;gt;&#60;/code&#62;  &#38;lt;-- and this&#60;/p&#62;
&#60;p&#62;It essentially just checks if the forum has a parent and doesn't show it.  Now on the forum page that's a problem because any forum listed would have a parent. Gotta think about that one for a minute...&#60;/p&#62;
&#60;p&#62;Oh wait, I know what to do, we just have to check if the forum_parent is equal to the current forum id. This is untested but in theory should work:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $forum_parent=$forum_id; ?&#38;gt;
&#38;lt;?php while ( bb_forum() ) : ?&#38;gt;
&#38;lt;?php if ($GLOBALS[&#38;#39;forum&#38;#39;]-&#38;gt;forum_parent==$forum_parent) { ?&#38;gt;
&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;
	&#38;lt;td&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;div class=&#38;quot;nest&#38;quot;&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php forum_description(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;/div&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_topics(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;?php } ?&#38;gt;
&#38;lt;?php endwhile; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Anonymous on "Hiding Subforums' Subforums from Subforum Pages"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages#post-17379</link>
<pubDate>Thu, 17 Jul 2008 06:57:13 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">17379@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi.&#60;/p&#62;
&#60;p&#62;This is an extension of this question: &#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11761&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11761&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My forum has forums, subforums, and then subforums of those subforums. Basically, there are three levels of forums.&#60;/p&#62;
&#60;p&#62;I was able to hide the subforums from the main forums page. But how do i hide the subforums' subforums from the subforums pages, so that the visitor must click on the subforum to view the subforums' subforums.&#60;/p&#62;
&#60;p&#62;I would really appreciate any help on this matter. I am not good at coding so it would be wonderful to get assistance! :)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Count subforum posts in parent count?"</title>
<link>http://bbpress.org/forums/topic/count-subforum-posts-in-parent-count#post-14114</link>
<pubDate>Tue, 26 Feb 2008 19:34:39 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">14114@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You'd have to do a custom mysql call to get the total but yes it is possible.
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Delete Forum with Subforum"</title>
<link>http://bbpress.org/forums/topic/delete-forum-with-subforum#post-12418</link>
<pubDate>Mon, 03 Dec 2007 22:38:10 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12418@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I tested on my test forum (no plugins activated), that didn't happen. The subforums of deleted forum were promoted one level.
&#60;/p&#62;</description>
</item>
<item>
<title>electroniques on "Delete Forum with Subforum"</title>
<link>http://bbpress.org/forums/topic/delete-forum-with-subforum#post-12416</link>
<pubDate>Mon, 03 Dec 2007 17:32:00 +0000</pubDate>
<dc:creator>electroniques</dc:creator>
<guid isPermaLink="false">12416@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey.&#60;/p&#62;
&#60;p&#62;I just wanted to delete one of my forums + 2 subforums. But it only deleted the (main)forum and not the subforums. The weird thing is that I can still access the subforums, but they don't show in the admin section anymore. I used phpmyadmin to delete them out of the database.&#60;/p&#62;
&#60;p&#62;But I thought you might want to check that out in case its a bug.
&#60;/p&#62;</description>
</item>
<item>
<title>Phayze on "Count subforum posts in parent count?"</title>
<link>http://bbpress.org/forums/topic/count-subforum-posts-in-parent-count#post-11843</link>
<pubDate>Wed, 07 Nov 2007 18:49:59 +0000</pubDate>
<dc:creator>Phayze</dc:creator>
<guid isPermaLink="false">11843@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
Is it possible to modify my forums loop (below) to count the posts in subforums in the total for the parent? My subforums are displayed inline, rather than in a separate row, and the parent forum looks a bit weedy without the &#34;real&#34; count.&#60;/p&#62;
&#60;p&#62;&#38;lt;?php while ( bb_forum() ) :&#60;br /&#62;
global $bb_forums_loop;&#60;br /&#62;
$_loop =&#38;#38; $bb_forums_loop;&#60;br /&#62;
if($_loop-&#38;gt;walker-&#38;gt;depth &#38;gt;= 2) : ?&#38;gt;&#60;br /&#62;
&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;&#60;br /&#62;
    &#38;lt;td colspan=&#34;3&#34; class=&#34;subforums&#34;&#38;gt;&#38;lt;?php bb_forum_pad( '&#38;lt;div class=&#34;nest&#34;&#38;gt;' ); ?&#38;gt;&#60;strong&#62;Subforums&#60;/strong&#62;:&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
    while ($_loop-&#38;gt;walker-&#38;gt;depth &#38;gt; 1) :&#60;br /&#62;
        if($_loop-&#38;gt;walker-&#38;gt;depth &#38;gt; 2) {&#60;br /&#62;
            bb_forum();&#60;br /&#62;
            continue;&#60;br /&#62;
            }&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
        &#60;a&#62;&#34;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#60;/a&#62;&#38;lt;?php&#60;br /&#62;
        bb_forum();&#60;br /&#62;
        if ($_loop !== null &#38;#38;&#38;#38; $_loop-&#38;gt;walker-&#38;gt;depth &#38;gt; 1)&#60;br /&#62;
            echo ', ';&#60;br /&#62;
        endwhile;&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
    &#38;lt;/td&#38;gt;&#60;br /&#62;
&#38;lt;/tr&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; ?&#38;gt;&#60;br /&#62;
&#38;lt;?php if ($_loop !== null) : ?&#38;gt;&#60;br /&#62;
&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;&#60;br /&#62;
    &#38;lt;td class=&#34;topic&#34;&#38;gt;&#38;lt;?php bb_forum_pad( '&#38;lt;div class=&#34;nest&#34;&#38;gt;' ); ?&#38;gt;&#60;a&#62;&#34;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#60;/a&#62;&#60;br /&#62;&#38;lt;?php forum_description();?&#38;gt;&#38;lt;?php bb_forum_pad( '&#38;lt;/div&#38;gt;' ); ?&#38;gt;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td class=&#34;num&#34;&#38;gt;&#38;lt;?php forum_topics(); ?&#38;gt;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td class=&#34;num&#34;&#38;gt;&#38;lt;?php forum_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;&#60;br /&#62;
&#38;lt;/tr&#38;gt;&#60;br /&#62;
&#38;lt;?php endif; endwhile; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
</item>
<item>
<title>Phayze on "Hiding Subforums on The Homepage"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11792</link>
<pubDate>Sat, 03 Nov 2007 11:53:45 +0000</pubDate>
<dc:creator>Phayze</dc:creator>
<guid isPermaLink="false">11792@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's exactly what I was after - thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Hiding Subforums on The Homepage"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11791</link>
<pubDate>Sat, 03 Nov 2007 10:53:01 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">11791@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Here is a similar topic: &#60;a href=&#34;http://bbpress.org/forums/topic/sub-sub-forums?replies=6&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/sub-sub-forums?replies=6&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Phayze on "Hiding Subforums on The Homepage"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11790</link>
<pubDate>Sat, 03 Nov 2007 10:43:44 +0000</pubDate>
<dc:creator>Phayze</dc:creator>
<guid isPermaLink="false">11790@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ahhh... great, thanks. Next question, just about on topic, has anyone modified their front page bb_forum() loop so that sub-forums appear like they do on &#60;a href=&#34;http://www.avforums.com/forums/index.php&#34; rel=&#34;nofollow&#34;&#62;http://www.avforums.com/forums/index.php&#60;/a&#62; - just the title, but in the same row as the parent?&#60;br /&#62;
Thanks,
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Hiding Subforums on The Homepage"</title>
<link>http://bbpress.org/forums/topic/hiding-subforums-on-the-homepage#post-11781</link>
<pubDate>Fri, 02 Nov 2007 19:48:54 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">11781@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;&#38;lt;?php global $forum; if ($forum-&#38;gt;forum_parent == 0) forum_description(); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Quick explanation of the code: When &#60;code&#62;$forum&#60;/code&#62;'s &#60;code&#62;forum_parent&#60;/code&#62; is &#60;code&#62;0&#60;/code&#62;, that means &#60;code&#62;$forum&#60;/code&#62; is a top-level forum; if not, it is a sub-forum of another forum whose &#60;code&#62;forum_id&#60;/code&#62; equals &#60;code&#62;$forum&#60;/code&#62;'s &#60;code&#62;forum_parent&#60;/code&#62;.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
