The space is where the site is trying to show your avatar
<a href="http://logicbenchmarks.com/forums/users/logicbenchmarks/" title="View Admin's profile" class="bbp-author-avatar" rel="nofollow"></a>
which is somehow not showing – no idea why, but suspect you have code doing this
I didn’t change or modify any core. Just installed the plugin as is. But I did disable avatars. Apparently it keeps the space, even if you don’t have avatars?
And isn’t it weird that you’d have a space for an Avatar in this text that is displayed in very small font?
This forum contains 2 topics and 2 replies, and was last updated by Admin 2 days, 4 hours ago.
This doesn’t look like a place where you would display an avatar.
how did you disable avatars?
In the WordPress settings under “Discussion”. I guess this affects the Avatars on the forum as well.
I guess this affects the Avatars on the forum as well.
Yep! That’s a site setting that bbPress is going to obey.
That sounds good. 🙂 But I still hope there’s a way in the future to remove that space! (The clean way)
Hello again! That space is bugging me, is there no way to remove it?
When you look at the code on the site itself it looks like it is this sign here which is causing spaces:
"
It also does that in other places. Can someone tell me why? And there’s no way to hide it through CSS either, because it has no class or id, so you can’t add display: none: to it.
put this in your functions file or in code snippets
add_filter( 'bbp_suppress_private_author_link', 'rew_remove_author_space' ) ;
function rew_remove_author_space ($author_link ){
$author_link = str_replace( ' ', '', $author_link );
return $author_link;
}
Code Snippets
@robin-w
It worked! Thanks to all you guys helping us out. 🙂
great – glad you’re fixed !