How to change submit button value in comment from “Post Comment” to “Send”
I have “responsive” theme , I tried to seach files in wp folder but i can’t find the html for this form .
Also Is that Possible to change this value (html Attribute) through CSS ?
below is the code of comment.php file
<?php if ( comments_open() ) : ?>
<?php
$fields = array(
'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name', 'responsive' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
'<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" /></p>',
'email' => '<p class="comment-form-email"><label for="email">' . __( 'E-mail', 'responsive' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" /></p>',
'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website', 'responsive' ) . '</label>' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>',
);
$defaults = array( 'fields' => apply_filters( 'comment_form_default_fields', $fields ) );
comment_form( $defaults );
?>
<?php endif; ?>