Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Hiding Sub-Forums


Jimmy B.
Participant

@jimmyvt

Hey hentdan! Thanks for your code snippet, that seemed to do the trick. I tweaked a couple things, namely <?php if (bb_forum_depth() <= 1 ) : ?>.

Thank you very much!

Here’s the complete code that’s working for me:

<?php function bb_forum_depth( ) {
global $bb_forums_loop;
if ( !is_object($bb_forums_loop) || !is_a($bb_forums_loop, 'BB_Loop') )
return false;

return $bb_forums_loop->walker->depth;
} ?>

<?php while ( bb_forum() ) : ?>
<?php if (bb_get_forum_is_category()) : ?>
<tr<?php bb_forum_class('bb-category'); ?>>
<td colspan="3"><?php bb_forum_pad( '<div class="nest">' ); ?><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a><?php forum_description( array( 'before' => '<small> – ', 'after' => '</small>' ) ); ?><?php bb_forum_pad( '</div>' ); ?></td>
</tr>
<?php continue; endif; ?>
<?php if (bb_forum_depth() <= 1 ) : ?> <!-- ******* -->
<tr<?php bb_forum_class(); ?>>
<td><?php bb_forum_pad( '<div class="nest">' ); ?><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a><?php forum_description( array( 'before' => '<small> – ', 'after' => '</small>' ) ); ?><?php bb_forum_pad( '</div>' ); ?></td>
<td class="num"><?php forum_topics(); ?></td>
<td class="num"><?php forum_posts(); ?></td>
</tr>
<?php endif; ?><!-- ******* -->
<?php endwhile; ?>

Skip to toolbar