How remove website in comments

Latest Reply from Marcin Kuczmera at 2013-02-25 04:44:15 Solution
Hello administrator,
i dont know how remove "website" in comments.
Hi!
Please try to add following code to the file functions.php:

add_filter('comment_form_default_fields', 'url_filtered');

function url_filtered($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
Hello, administrator,
your solution working fine.
Thank you

Leave a reply

Add codeAdd image