Could anyone assist me with combining the code JennAtFFP provided for changing the comment form title, but also changing the other labels, plus, eliminating the website field altogether.
Here is the code I found that will change everything except the comment form title:
<?php $comment_args = array( 'fields' => apply_filters( 'comment_form_default_fields', array(
'author' => '<p class="comment-form-author">' .
'<label for="author">' . __( 'Your Name' ) . '</label> ' .
( $req ? '<span class="required">*</span>' : '' ) .
'<input id="author" name="author" type="text" value="' .
esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' />' .
'</p><!-- #form-section-author .form-section -->',
'email' => '<p class="comment-form-email">' .
'<label for="email">' . __( 'Your Email' ) . '</label> ' .
( $req ? '<span class="required">*</span>' : '' ) .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) .
'" size="30"' . $aria_req . ' />' .
'</p><!-- #form-section-email .form-section -->',
'url' => '' ) ),
'comment_field' => '<p class="comment-form-comment">' .
'<label for="comment">' . __( 'Let us know what you have to say:' ) . '</label>' .
'<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>' .
'</p><!-- #form-section-comment .form-section -->',
'comment_notes_after' => '',
);
comment_form($comment_args); ?>
and, of course here is the code for changing the title:
<?php comment_form(array('title_reply'=>'Comments Make Me Happy')); ?>
I just need to know how to add the two together.
Thanks,
Jeff