How to customize comment form?

Posted in: Newspaper
Post count: 3

I want to remove mail and site options in the comment form.
Only Name to be requested and visible to leave a comment.

Post count: 20688

Hi,

That can be done in the WordPress settings, there are options in the matter
https://www.screencast.com/t/vYRj2illF
If those options are disabled, a user can leave a comment without filling any information
https://www.screencast.com/t/d0hDbnpfPxe

Thanks

Post count: 3

Thanks ,but I already do that.I need a way to hide mail and site options.How to remove them or make them invisible?

Post count: 20688

You could do that in two ways. Either with a function in functions.php (main or child theme)

function disable_comment_url_email($fields) {
unset($fields['url']);
unset($fields['email']);
return $fields;
}
add_filter('comment_form_default_fields','disable_comment_url_email');

Or hide them with CSS (code entered in Theme panel->Custom CSS)
https://www.screencast.com/t/nKAHr91cdy

.comments .td-form-email,
.comments .td-form-url {
display: none;
}

Thanks

Post count: 3

Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.