Hi Jade,
Aren’t there any plugin to make this easier? I am not good with coding. I tried already with the codes they recommended and it didn’t work. And I am not good at coding.
I would like to add something similar to this, which is what I have in my contact form.

Also, I am aware that you don’t help with coding but I have tried to eliminate the field website through the codes that everyone recommends and it didn’t work. Any suggestion?
This is the code I got:
// Change Text on Comment Form
function ia_comment_form_text ($fields) {
$fields[‘label_submit’] = ‘Add Comment’;
$fields[‘title_reply’] = ‘Leave a comment’;
return $fields;
}
add_filter(‘comment_form_defaults’,‘ia_comment_form_text’);
// Remove Fields on Comment Form
function ia_comment_form_fields($fields){
$fields[‘email’] = ‘’; //removes email field
$fields[‘url’] = ‘’; //removes website field
return $fields;
}
add_filter(‘comment_form_default_fields’,‘ia_comment_form_fields’);