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!