Skip to:
Content
Pages
Categories
Search
Top
Bottom

What file does sub-forum layout on frontpage


  • Martin J
    Participant

    @mocha365

    On the home of the forum, I have categories with sub forums in them, but need to change the layout to be 2 columns instead of comma separated forums. What file can I add to my theme to override this? bbPress has a crazy common between the <li> tags and drives me nuts because you can’t remove that using css.

Viewing 1 replies (of 1 total)

  • Robin W
    Moderator

    @robin-w

    by code

    //create vertical list subforum layout
    function custom_bbp_sub_forum_list() {
      $args['separator'] = '
    ';
      return $args;
    }
     add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );

    or this plugin has it as a setting in

    dashboard>settings>bbp style pack>Forum Display

    bbp style pack

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar