Bbpress Wordpress Plugin have default link user profile url. The link like this: www.example.com/forum/users/(username)
The main purpose in nutshell is: I want to change the url.
Actually, I found the solution but its not perfect. The code like this:
function user_profile_link(){
$url = 'http://localhost/example.com/profile/';
$author_id = bbp_get_reply_author_id();
$user_info = get_userdata($author_id);
echo '<a href="'.$url.''.$user_info->user_login.'"> '. $user_info->display_name.' </a>';
}
add_filter('bbp_get_user_profile_url', 'user_profile_link');
Yes, the code working well. But the outcome is, the user profile URL not replaced and there is double URL like this image below:
I think the problem solved if I display: none it. The code like this:
<style>
.bbp-author-link{
display: none;
}
</style>
But there is one problem. The new URL that I make appeared beside the breadcrumbs like this image:
I want to remove the link that appeared beside the breadcrumbs. Is there any solution? Any help is appreciated. Thank You