Remove Website Field in Comment

Posted in: Newspaper
Post count: 12

Hi

I have added the following code in td-standard-pack/Newspaper/functions.php as per this link

function disable_comment_url($fields) {
unset($fields[‘url’]);
return $fields;}
add_filter(‘comment_form_default_fields’,’disable_comment_url’);

But still, I could see the website field in the comment section, please advise

Thanks

Post count: 27744

Hello,

I think the problem is related to how it set up the function, please check this article https://www.wpbeginner.com/plugins/how-to-remove-website-url-field-from-wordpress-comment-form/
The function needs to be added to the file function.php of the theme.

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.