bbPress shows Gravatars with all user profile links, and it doesn’t have option to do that from the plugin settings.
But, you can modify arguments for the function bbPress uses to display user profile links, and disable display of avatars. This is the custom code you need to add to theme functions.php file.
add_filter('bbp_before_get_topic_author_link_parse_args', 'bbhelp__disable_author_link_avatar');
public function bbhelp__disable_author_link_avatar($args) {
$args['type'] = 'name';
return $args;
}
Programmer since the age of 12 and now WordPress developer with more than 8 years of WordPress experience, author of more than 100 plugins and more than 20 themes.
bbPress uses pipe | character in various places as a separator between links or buttons or other elements. But, sometimes, these elements can cause problems with the layouts and need to be changed or removed.
bbPress requires theme templates to display the forums content. Currently, bbPress needs total of 16 theme templates for all content types and taxonomies.
To display the content for forums, bbPress relies on the theme templates. But, these are specialized template, and most themes don’t have them. So, how the bbPress uses templates?
There are many ways to modify the way the bbPress forums look like, styling changes, filters and actions and overriding the templates bbPress uses to render all the forums elements.