Remove in comments to remove a link to a specific comment?

Does anyone know how to reliably remove the link that is under the meta date of a comment?

Snímek obrazovky 2024-06-09 v 21.22.15

There are two methods.

  1. You can use snippets
  2. You can use pointer-events on that class.
.comment-author-info a {
    pointer-events: none;
    color: #000000;
}

or

add_filter( 'get_comment_author_link', 'rv_remove_comment_author_link', 10, 3 );
function rv_remove_comment_author_link( $return, $author, $comment_ID ) {
	return $author;
}

But you’re talking about the link to the author’s profile. Try reading my post again. :slight_smile: