Remove "Website" field from comment box.

Posted in: Newspaper
Post count: 10

I want to be able to remove the “website” field in the comment box. I only want it to ask for name and email.

Post count: 27744

Hello,

Unfortunately, this can be hidden only with custom code CSS, for the moment there is no option to remove it from the comment section.
Please try this custom css
.comments .comment-form-input-wrap.td-form-url{
display: none;
}

This code needs to be set in theme panel> custom code-> custom CSS.

Hope it will help you!

Thank you!

Post count: 155

Hi!
You could also deregister it from your functions.php.
I like this approach better.

add_filter('comment_form_default_fields', 'unset_url_field');
function unset_url_field($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}

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