Go to your theme open comments.php if you have one:
and find the line:
comment_form();
Replace it with this code which you could change as you like:
$commenter = wp_get_current_commenter();
$fields = array(
'author' => '<p>' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /><label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span>*</span>' : '' ) .
'</p>',
'email' => '<p><input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span>*</span>' : '' ) .
'</p>',
'url' => '<p><input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /><label for="url">' . __( 'Website' ) . '</label>' .
'</p>',
);
$defaults = array(
'fields' => apply_filters( 'comment_form_default_fields', $fields ),
);
comment_form($defaults);
For more information check the wordpress docs: http://codex.wordpress.org/Template_Tags/comment_form
How to remove wordpress comment links?
Published by admin on 5 May ’11When somebody submits a comment to your blog and fill his website in the website field, a link appears on his name going to his site. If you wish to remove this link from the author name just use this plugin – Comment Link Manager