How do we remove the H3 tag for the reply-title I.D
add_filter( ‘comment_form_defaults’, ‘custom_reply_title’ );
function custom_reply_title( $defaults ){
$defaults[‘title_reply_before’] = ‘<span id=”reply-title” class=”comment-reply-title”>’;
$defaults[‘title_reply_after’] = ‘</span>’;
return $defaults;
}