Notifications
Clear all
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.
2 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.