If you want to remove the WordPress comment url links, you can add the following code to the functions.php
function dobeweb_remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','dobeweb_remove_comment_fields');