Skip to:
Content
Pages
Categories
Search
Top
Bottom

List forums the simple way?!

  • @cliffhangerl

    Participant

    Hi,

    I’m new to BBpress and need some guidance. I have tried to search for the problem I have but I have not been able to understand if the posts I find really have to do with my problem.

    What I want to do is to make (see picture below) a list where Fictional literature, where posts are lined up below each other.
    Fictional Literature (0, 0),
    Fictional News Post (0, 0),
    Fictional Media (0, 0)
    etc…

    I found some answers saying I need to add a code in a PHP-file called loop. But that seems too extreme to fix something “simple” like this? The plugin seem very complete and I would guess theres just a box to click to make this change.. or I’m I asking for too much? 🙂

    In my picture below is what I see when I go into my Forum.

    Want a list of the forums

Viewing 3 replies - 1 through 3 (of 3 total)
  • @magic-komplex

    Participant

    Unfortunately there is no button to change this, I wanted the same thing for my forum. But it’s really not a huge thing you have to change within the code. See the detailed explanation how to achieve this here, it’s quite easy:

    http://www.thespiritualpath.de/wp-content/uploads/2014/03/error.jpg

    4. Adding code to our child theme’s style.css

    @robin-w

    Moderator

    Glad you found it.

    There are a whole set of things you can change listed here

    Layout and functionality – Examples you can use

    @netweb

    Keymaster

    You just need to add the following sbnippet of code to your themes functions.php file:

    
    function custom_bbp_list_forums() {
      $args['separator'] = '<br />';
      return $args;
    }
    add_filter('bbp_before_list_forums_parse_args', 'custom_bbp_list_forums' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar