Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Comments widget link goes nowhere’ is closed to new replies.
Hey 1lizcollins!
Try adding this to the bottom of your functions.php file.
add_filter( 'get_comment_author_link', 'enfold_customization_nocommenturl' );
function enfold_customization_nocommenturl ( $c ) {
global $comment, $post;
return get_comment_author( get_comment_ID() );
}
Regards,
Elliott
Perfect, thank you very much!