How to remove website field from comment.
-
Hello
How can i remove website field from comment box? I want to do this so i can prevent spammers from spamming on my website. I’m using jetpack comment system. Also i’m using child theme for Hueman Theme.
I have tried this code, but no luck.
function alter_comment_form_fields($fields){ $fields['url'] = ''; //removes website field return $fields; } add_filter('comment_form_default_fields','alter_comment_form_fields');
Any ideas? Thanks in advance!!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to remove website field from comment.’ is closed to new replies.