Hi all,
In this video, I've shared a trick about removing the website URL field from the post comment section. Here is the code snippet. Just copy it from here and paste it according to this video:
add_filter('comment_form_default_fields', 'unset_website_field');
function unset_website_field($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
Happy coding guys.