Display forum as list not working
-
I was following the layout and functionality examples you can use and it didn’t work for me.
Step 1 worked for me just fine.
I inserted the following code into my functions.php (i am using a child theme)//create vertical list function custom_bbp_sub_forum_list() { $args['separator'] = '<br>'; return $args; } add_filter('bbp_before_list_forums_parse_args', 'custom_bbp_sub_forum_list' );
Then I moved onto step 2 and added this into my functions.php as well
function remove_counts() { $args['show_topic_count'] = false; $args['show_reply_count'] = false; $args['count_sep'] = ''; return $args; } add_filter('bbp_before_list_forums_parse_args', 'remove_counts' );
It removed the counts but it didn’t look like a list anymore
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- You must be logged in to reply to this topic.