Remove Website Feild From Comments Section of WordPress

Posted in: Newspaper
Post count: 18

Hello Sir,
I want to remove “website” field from comments section. (see this https://prnt.sc/nbw38g )

Post count: 85

A quick and easy way is just to add this line to the very end of your functions.php file. Leave out the plus signs, of course:0

+++++
add_filter(‘comment_form_default_fields’, ‘website_remove’);
function website_remove($fields)
{
if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;
}
++++

Post count: 18

It’s not working for me. I did edit function.php file.

Post count: 18

my bad, it’s working fine.

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