• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Baguiowebs

Baguiowebs

Learn WordPress. Build Your Own Site.

  • Contact
  • Build a Site
  • WP Training
  • Library
  • Signup
  • Login
  • Contact
  • Build a Site
  • WP Training
  • Library
  • Signup
  • Login

How to Customize Category Display

Hi, Login
X

Join Us Forgot Password?

to view this video. Not a member? Join Now!

Please refer to the above video to see exactly what is copy and pasted AND to make sure you have a fresh FULL backup of both files and database of your WordPress site BEFORE you mess with any code.

Put this snippet in the child themes style.css file:

/* This code snippet makes the forums in a category line up on top of each other instead of inline  */
#bbpress-forums .bbp-forums-list li {
   display: block;
}

Put this snippet in the child themes functions.php file:

/* This code snippet makes the forums in a category no longer display the topic/reply count to the right of each forum title  */
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' );

Filed Under: bbPress Forum Setup

Primary Sidebar

Section 9

WordPress Forum Setup

Introduction

  • What Is A Forum3:04min
  • Different Forum Applications5:10min

Installation

  • How to Install bbPress3:34min
  • Convert Forums Into bbPress5:51min

Guides & Tips

  • Forum Structure3:32min
  • How to Create Forums5:54min
  • How to Create Forum Categories4:55min
  • How to Customize Category Display3:25min
  • How to Create Sticky Topics4:03min
  • Create a Forum Registration Page5:52min
  • How to Customize Forum Search Boxes5:52min
  • Create Forum Password Reset Page2:29min
  • How to Prevent Forum Spam5:58min

Copyright © 2021 Baguiowebs. All Rights Reserved.

  • About
  • Disclaimer
  • Privacy Policy
  • Terms