In the theme_post_comments.php i just replaced…
<?php comment_author_link(); ?>
with
<?php comment_author(); ?>
All working now 🙂
Solved. This code was in the functions.php. I’ll find another way to remove the URL link on the comment author’s name…
/** Removes link to comment author website */
function author_link(){
global $comment;
$comment_ID = $comment->user_id;
$author = get_comment_author( $comment_ID );
$url = get_comment_author_url( $comment_ID );
if ( empty( $url ) || 'http://' == $url )
$return = $author;
else
$return = "$author";
return $return;
}
add_filter('get_comment_author_link', 'author_link');