<?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: parent</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: parent</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 22:36:59 +0000</pubDate>

<item>
<title>Ipstenu on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20838</link>
<pubDate>Thu, 20 Nov 2008 15:53:16 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">20838@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I cheat and look at this a lot: &#60;a href=&#34;http://phpxref.ftwr.co.uk/bbpress/nav.html?index.html&#34; rel=&#34;nofollow&#34;&#62;http://phpxref.ftwr.co.uk/bbpress/nav.html?index.html&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20837</link>
<pubDate>Thu, 20 Nov 2008 15:28:00 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20837@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi _CK_,&#60;/p&#62;
&#60;p&#62;Once again thanks for a great technical answer.&#60;br /&#62;
Can i follow it up with a quickie though:&#60;/p&#62;
&#60;p&#62;Where in the documentation is all of those methods listed?&#60;br /&#62;
Are there other things i can call from $bb_forums_loop that may help is theme developers?&#60;br /&#62;
Where is the documentation for them?&#60;/p&#62;
&#60;p&#62;P.S. your answer really helped me alot, i'll rewrite by current code now :)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20822</link>
<pubDate>Thu, 20 Nov 2008 09:39:05 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20822@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You can work around this problem by doing a scan of the $forums global before entering the main loop and checking the &#34;rank&#34; or &#34;type&#34; of forum for each listing.&#60;/p&#62;
&#60;p&#62;In fact you can replace the loop entirely with your own routine, as long as you &#60;code&#62;global $forum&#60;/code&#62; you can set the $forum to any which one you want and the internal functions will still work.&#60;/p&#62;
&#60;p&#62;So essentially do a pre-loop through the forums, build your own array of how you'd like the output, and then do the main loop to output the forums in the order/design that you'd like. Just be sure to set &#60;code&#62;$forum&#60;/code&#62; to the current forum you are working with before calling any of the forum functions.&#60;/p&#62;
&#60;p&#62;ps. You *can* access&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$bb_forums_loop-&#38;gt;first_child
$bb_forums_loop-&#38;gt;last_child
$bb_forums_loop-&#38;gt;bb_root&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you wish. Just do a &#60;code&#62;global $bb_forums_loop;&#60;/code&#62; outside of the loop, then inside the loop they are available to you.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20764</link>
<pubDate>Tue, 18 Nov 2008 17:28:59 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20764@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So, the issue with the method implemented in : &#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages&#60;/a&#62;&#60;br /&#62;
is that it only checks for the lineage of the forum before it.&#60;/p&#62;
&#60;p&#62;This causes problems when you have multiple children to multiple children, as thus:&#60;/p&#62;
&#60;p&#62;category&#60;br /&#62;
- Forum1&#60;br /&#62;
- - Child 1&#60;br /&#62;
- - - Child1's child&#60;br /&#62;
- - Child 2&#60;/p&#62;
&#60;p&#62;That method will make BBpress think that Child 2 is actually under Child1's Child, because when testing if their parents are the same they clearly are not.&#60;/p&#62;
&#60;p&#62;Instead, we have to create a nesting code that counts the depth to which we go as we trawl through each parent/child relationship - which is daft as there is a walker-&#38;gt;depth function that we just don't have access to via $GLOBALS['forum'].&#60;/p&#62;
&#60;p&#62;EDIT:&#60;/p&#62;
&#60;p&#62;Update - not knowing if it's the last forum in a category is starting to kill me a little.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20763</link>
<pubDate>Tue, 18 Nov 2008 16:14:17 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20763@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Funnily enough i've made the same hack solution as instructed in this topic:  &#60;a href=&#34;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/hiding-subforums-subforums-from-subforum-pages&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;The problem is, the idea of checking for the forum parent id is ok when dealing with a singular table. If it's got the same parent fine, if it's not do something else. But the whole thing starts to get messy when dealing with non-linear tables. If your forum has multiple sub forums or parent child relationships the whole thing starts to crumble, or if you're using a javascript DOM indexer 9say you want open close functionality), or if you're aiming for a a UL/LI version instead of tables (i'm not against tables for tabular data btw - but for parent child iterations screen readers prefer UL/LI loops).&#60;/p&#62;
&#60;p&#62;I'll post my theme with these hacks and hopefully you can see what I mean, because i'm a bit stunned about how rigid this all is given the excellent coding that's been developed by the authors so far.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20761</link>
<pubDate>Tue, 18 Nov 2008 15:04:35 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20761@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, there's no good way of putting this without making it look like i'm flogging my own dead horse, but here goes:&#60;/p&#62;
&#60;p&#62;Can someone tell me why we're working out vital data in regards to each forum on as CSS links?&#60;/p&#62;
&#60;p&#62;Why on Earth don't we work out each attribute at the start of the loop, and then feed off an object, giving our template developers and therefore users far more options?&#60;/p&#62;
&#60;p&#62;As it stands, we call bb_forum_class(); inside the TR, which then creates the $bb_forums_loop object; which calls classes();, and that works out all the attributes of the forum, but rather than sending them back as a usable object the whole thing returns a string of CSS code.&#60;/p&#62;
&#60;p&#62;Why not allow template developers access to:&#60;/p&#62;
&#60;p&#62;$bb_forums_loop-&#38;gt;first_child&#60;br /&#62;
$bb_forums_loop-&#38;gt;last_child&#60;br /&#62;
$bb_forums_loop-&#38;gt;bb_root&#60;/p&#62;
&#60;p&#62;etc?&#60;/p&#62;
&#60;p&#62;I mean, the code itself if great, and the job you've done is really good,  but it fixes one singular issue (getting the right CSS output), rather than fixing the bigger problem of not knowing all attributes of the forum. Not only does it lead to very messy templates (if someone can be bothered to deal with it - and i've not seen a template that has yet), but it does indeed duplicate alot of the work.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Parent / Childrelationship in forum loop"</title>
<link>http://bbpress.org/forums/topic/parent-childrelationship-in-forum-loop#post-20760</link>
<pubDate>Tue, 18 Nov 2008 14:08:05 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20760@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;At the risk of looking like a double whammy in regards to the non nesting iterations of our outputted code, just using TRs with different classes, i've hit across another wee issue - but this time i'm sure there's a simple solution I just can't see the relavent code.&#60;/p&#62;
&#60;p&#62;I want to be able to know if a forum has children or not, or more specifically when we move up or down a level in the &#34;xPath&#34; iteration.&#60;/p&#62;
&#60;p&#62;I'm using a method of using $GLOBALS['forum']-&#38;gt;forum_parent but what this currently requires me doing is testing to see if the forum has a parent that is not a category, then checking to see if the parent is the same as the previous forums parent, and then output relavent code to nest the forum in an actual parent child format:&#60;/p&#62;
&#60;p&#62;Category&#60;br /&#62;
 - Forum&#60;br /&#62;
 - Forum&#60;br /&#62;
 - - Forum&#60;br /&#62;
 - - Forum&#60;br /&#62;
 - Forum&#60;/p&#62;
&#60;p&#62;This obviously creates havok and rather messy code for the closing of the nestings.&#60;/p&#62;
&#60;p&#62;I realise that for small websites this will look like a formatting issue, but once you reach more than 2 levels in a parent child relationship, the ability to control nested relationships makes a huge difference. &#60;/p&#62;
&#60;p&#62;Thanks for the help folks&#60;/p&#62;
&#60;p&#62;EDIT:&#60;/p&#62;
&#60;p&#62;Ok, i think i've found half the solution to the issue, and maybe i can phrase the question better now in BBterms...&#60;/p&#62;
&#60;p&#62;I want to know, via PHP, before any code has been sent to the browser for the forum, if it is a FIRST CHILD or a LAST CHILD. &#60;/p&#62;
&#60;p&#62;Now obviously, BBpress knows this because it's outputting bb-last-child bb-first-child css, but how can I access these settings on the front-page.php ?&#60;/p&#62;
&#60;p&#62;Thanks alot for all the help
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Move this topic to the selected forum:"</title>
<link>http://bbpress.org/forums/topic/move-this-topic-to-the-selected-forum#post-20280</link>
<pubDate>Mon, 27 Oct 2008 15:35:14 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20280@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What version bbPress did you install?  Maybe it's a bug changing from a category and then back not working.&#60;/p&#62;
&#60;p&#62;I have an Alpha 2 installation, and I created a forum, made it a category, then added some sub-categories. Then, I unchecked the &#34;Forum is category&#34; on the top forum, and it became a regular forum, and I was able to post in it.  At that point it was just hierarchical, with a top level forum and three sub-forums, not a parent category that would not allow posts.  I think this is exactly how the &#34;Forum is Category&#34; functionality is supposed to work.
&#60;/p&#62;</description>
</item>
<item>
<title>chrissydunno on "Move this topic to the selected forum:"</title>
<link>http://bbpress.org/forums/topic/move-this-topic-to-the-selected-forum#post-20238</link>
<pubDate>Sat, 25 Oct 2008 18:42:47 +0000</pubDate>
<dc:creator>chrissydunno</dc:creator>
<guid isPermaLink="false">20238@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;unfortunately making them children or parents doesn't do it&#60;/p&#62;
&#60;p&#62;i'm noticing it has to do with 'forum is category' .. if the checkbox is marked the forum is grayed out and you cannot add or move topics to it&#60;/p&#62;
&#60;p&#62;if it's not marked there is no problem&#60;/p&#62;
&#60;p&#62;however i cannot change the status of the checkbox for existing forums .. unchecking and saving doesn't work .. it stays checked
&#60;/p&#62;</description>
</item>
<item>
<title>musnake on "Move this topic to the selected forum:"</title>
<link>http://bbpress.org/forums/topic/move-this-topic-to-the-selected-forum#post-20208</link>
<pubDate>Fri, 24 Oct 2008 17:17:40 +0000</pubDate>
<dc:creator>musnake</dc:creator>
<guid isPermaLink="false">20208@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Chrissy,&#60;/p&#62;
&#60;p&#62;If you have six fora (veg, carrot, beets, corn, dog, pets), you set veg and pets as categories.  Then you make the dog forum a child of the category forum pet and the rest as children of veg.  &#60;/p&#62;
&#60;p&#62;When you display your forum list (e.g. on the frontpage), you'll see the category fora as 'headings' for their children...  One doesn't usually get to post in the category fora.  They're, well, like headings.
&#60;/p&#62;</description>
</item>
<item>
<title>chrissydunno on "Move this topic to the selected forum:"</title>
<link>http://bbpress.org/forums/topic/move-this-topic-to-the-selected-forum#post-20196</link>
<pubDate>Fri, 24 Oct 2008 16:00:27 +0000</pubDate>
<dc:creator>chrissydunno</dc:creator>
<guid isPermaLink="false">20196@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i can't seem to move topics as an admin&#60;/p&#62;
&#60;p&#62;i have 3 forums and new topics are placed into 1st.  Number 2 and 3 are in the dropdown of options but they are grayed out - I can't select them.  Anyone encountered it?&#60;/p&#62;
&#60;p&#62;Also, in admin panel under forums there is a 'Forum is Category:' checkmark.  What does this do?  I can't seem to be able to change that.  (1st forum has it the other two do not)  I thought that maybe these problems are related.
&#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>lstelie on "Multiple-level forums"</title>
<link>http://bbpress.org/forums/topic/multiple-level-forums#post-18941</link>
<pubDate>Fri, 05 Sep 2008 06:11:07 +0000</pubDate>
<dc:creator>lstelie</dc:creator>
<guid isPermaLink="false">18941@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62; Exact, you just need to check the &#60;em&#62;is category&#60;/em&#62; when creating (or modifying) the forum.&#60;/p&#62;
&#60;p&#62;You also have to check the theme. Kakumei is ok, but some others display 0 (zero) in front of the father forum, this is disturbing for users who fail to understand that the top forum is only a container and not a real forum. Some doesn't display forum as a hierarchy (with a father / container forum and sub forums).
&#60;/p&#62;</description>
</item>
<item>
<title>darnit on "Multiple-level forums"</title>
<link>http://bbpress.org/forums/topic/multiple-level-forums#post-18940</link>
<pubDate>Fri, 05 Sep 2008 03:42:20 +0000</pubDate>
<dc:creator>darnit</dc:creator>
<guid isPermaLink="false">18940@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I found the answer myself, 26 mins. later, LOL: you simply need to go to Manage -&#38;gt; Forums -&#38;gt; click on a forum and set its parent forum.&#60;/p&#62;
&#60;p&#62;That way you'll have multiple subforums on any forum on your bbPress installation.&#60;/p&#62;
&#60;p&#62;Heh. Next time, I'll get acquainted with the features of bbPress BEFORE asking for help ^_^
&#60;/p&#62;</description>
</item>
<item>
<title>darnit on "Multiple-level forums"</title>
<link>http://bbpress.org/forums/topic/multiple-level-forums#post-18939</link>
<pubDate>Fri, 05 Sep 2008 03:12:53 +0000</pubDate>
<dc:creator>darnit</dc:creator>
<guid isPermaLink="false">18939@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello bbpress world!&#60;/p&#62;
&#60;p&#62;I would like to congratulate you all for developing such a steadfast, easy-to-use forum software known as bbPress. I love(s) it :)&#60;/p&#62;
&#60;p&#62;Secondly -- yeap, it's an issue -- I would like to know if it is possible to have a forum-forum-topic structure instead of the current forum-topic one.&#60;/p&#62;
&#60;p&#62;For example, we currently have:&#60;/p&#62;
&#60;p&#62;Webmasters Forum - [all the topics go here]&#60;/p&#62;
&#60;p&#62;while we would want to have:&#60;/p&#62;
&#60;p&#62;Webmasters Forum - Italian Webmasters Forum / American Webmasters Forum - [all the topics from the Italian / American  go here]&#60;/p&#62;
&#60;p&#62;Would such a structure be possible?&#60;/p&#62;
&#60;p&#62;Thank you for your time and for your replies.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress loop"</title>
<link>http://bbpress.org/forums/topic/bbpress-loop#post-15788</link>
<pubDate>Sat, 26 Apr 2008 10:39:20 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15788@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What you are asking for is very easy.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$forums = get_forums();&#60;/code&#62; gets you all the forums,&#60;br /&#62;
&#60;code&#62;$topics   = get_latest_topics( $forum_id);&#60;/code&#62; will get you the topics list for any forum id.  So if you looped through the forums like on the front page, just fetch the $topics after each forum in the loop.&#60;/p&#62;
&#60;p&#62;The formatting and page layout is the &#34;hard&#34; part.
&#60;/p&#62;</description>
</item>
<item>
<title>burkie on "bbpress loop"</title>
<link>http://bbpress.org/forums/topic/bbpress-loop#post-15780</link>
<pubDate>Fri, 25 Apr 2008 22:29:50 +0000</pubDate>
<dc:creator>burkie</dc:creator>
<guid isPermaLink="false">15780@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;While customizing bbpress I was wondering if anyone had a way to display forums/subforums and topics together, list a forum then have the topics for each displayed below it?
&#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>hans3 on "Forum Order and Forum Parent Issues"</title>
<link>http://bbpress.org/forums/topic/forum-order-and-forum-parent-issues#post-13861</link>
<pubDate>Fri, 15 Feb 2008 16:23:59 +0000</pubDate>
<dc:creator>hans3</dc:creator>
<guid isPermaLink="false">13861@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks once again to _ck_ having the good spirit to work through problems, has helped me solve this issue.  The problem was using an old plugin called &#34;Forum Restriction&#34;.  Once removed all functionality was restored.
&#60;/p&#62;</description>
</item>
<item>
<title>hans3 on "Forum Order and Forum Parent Issues"</title>
<link>http://bbpress.org/forums/topic/forum-order-and-forum-parent-issues#post-13847</link>
<pubDate>Fri, 15 Feb 2008 00:12:10 +0000</pubDate>
<dc:creator>hans3</dc:creator>
<guid isPermaLink="false">13847@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've created 5 forums lets call them 1,2,3,4, and 5, and then decided to add a parent to three of them.  So  I created the Parent Forum lets call it A, then clicked edit on forum 5 to tell it to be a child of the newly created forum A.  Problem being the forum A doesn't show up in the parent list.  So I click edit on forum 4, forum A shows up in its Parent list, so I assign it.  Save and go check the site.  Forum 4 has not been moved into A, they are all there as if parents weren't selected.&#60;/p&#62;
&#60;p&#62;So that has me puzzled...&#60;/p&#62;
&#60;p&#62;As for the Forum Order deal.  I moved the forum from the bottom to the top, and when I went to view the site it was the only forum showing up.  The rest had vanished.  I went back in and moved it back to the bottom of the list, and the rest show back up.&#60;/p&#62;
&#60;p&#62;Any ideas on either of these issues?
&#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>

</channel>
</rss>
