May 01, 2018 10:19 pm
How do I remove/disable the link for the author name on posts/replies? I want to display the name, but not have it link to the profile.
Thanks.
5 Replies
May 02, 2018 8:00 am
Put this code snippets in your current active WordPress theme functions.php
function wpforo_function_to_remove_profile_link($profile_url){
return false;
}
add_filter( 'wpforo_profile_url', 'wpforo_function_to_remove_profile_link', 10, 3 );
May 02, 2018 3:00 pm
Works great. Thanks.
Mar 10, 2023 2:18 am
Just wondering if there is a new way to do this? The suggestion no longer seems to work. Thanks
Mar 13, 2023 10:44 pm
That was it, thank you!!