yes, put this in your functions file
function hide_role ($args) {
$args['show_role'] = false ;
Return $args ;
}
add_filter ('bbp_before_get_reply_author_link_parse_args', 'hide_role') ;
come back if you need any further help !
Thanks for this. Works just great. Just right now I found out that the author’s name in the forum is linked to his profile. How do I delete the link? Unfortunately my programming knowledge is not good enough to find it out by myself using the codex.
Try this – it should work
Function hide_author_url () {
$retval='' ;
return $retval ;
}
add_filter( 'bbp_get_topic_author_url', 'hide_author_url' );
add_filter( 'bbp_get_reply_author_url', 'hide_author_url' );
Works. Now I think everything’s fine. Thank you!
Great – glad you’re fixed !
Where can I find the functions file?
It worked!!! you are the best! Thank you.
great – glad you are fixed !
Thank you too !
Isn’t it now included in latest versions ?
Eric Collart