Does anyone know how to reliably remove the link that is under the meta date of a comment?
There are two methods.
- You can use snippets
- 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.