Archived topic
Remove websites field from comments section
4 replies · Started by Vish on June 19, 2018
Hello there
Need help with removing websites field from the comments section. I tried hiding the field using CSS but the bots are getting really smart and it doesn't help in reducing spam.
I am looking for a way to permanently remove the websites section.
Thanks in advance!
Hello!
1) Try to add this to your functions.php:
function hm_disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','hm_disable_comment_url');
2) Use e.g. this plugin https://wordpress.org/plugins/disable-hide-comment-url/ .
3) Add this CSS:
#commentform .comment-form-url {display:none;}
Choose the one you prefer. :)
Best regards,
Heiko
This should help as well: https://generatepress.com/forums/topic/how-to-remove-url-field-from-wordpress-comment-form/#post-589904
Thanks, Heiko and Leo!
Glad we could help :)