After creating a unique wordpress theme, I'm currently dealing with the task of eliminating the "Website Field" within the Comments form.
Although I attempted to implement the following code into my function.php file, it appears that the desired outcome has not been achieved.
//REMOVE WEBSIE FORM IN COMMENTS
function remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','remove_comment_fields');