Hi there,
The linked documentation provides an example of removing both e-mail and website URL. If you only want to remove the website URL then modify the code to this:
add_action( 'after_setup_theme', 'tu_add_comment_url_filter' );
function tu_add_comment_url_filter() {
add_filter( 'comment_form_default_fields', 'tu_disable_comment_url', 20 );
}
function tu_disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
Very disappointed by your support.
The comment system is entirely handled by WP core so your request isn’t actually a theme support question – we are just doing our best to help.
Also do keep in mind that you’ve opened multiple topics here and we’ve helped with and solved all of them already.
Your patience is appreciated.