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;
}

 

Please, take a few seconds and rate this answer
No votes yet.
Please wait...

Question answered by

Milan Petrovic

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.

Namecheap - Your dream domain awaits

The Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

WP Rocket - Make WordPress Load Fast in a Few Clicks