Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Remove html field from comments

add_filter('comment_form_defaults' , 'remove_allowed_html_tags_note', 30);
function remove_allowed_html_tags_note( $defaults ) {
	return array_replace( $defaults, array('comment_notes_after' => '' ) );
}