AI Search
Classic Search
Notifications
Clear all
May 02, 2018 2:19 am
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 12:00 pm
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 7:00 pm
Works great. Thanks.
Mar 10, 2023 6:18 am
Just wondering if there is a new way to do this? The suggestion no longer seems to work. Thanks
Mar 14, 2023 2:44 am
That was it, thank you!!