How to remove ‘Site’ in the comment form?

you can try adding this filter to your theme’s functions.php:

add_filter('comment_form_default_fields', 'remove_url');
function remove_url($val) {
    $val['url'] = '';
    return $val;    
}