How to Remove website field in comment box

Posted in: Newspaper
Post count: 3

i want to remove website field in comment box. my website name is – Forms Fillup . please help me for this issue.

Post count: 132

Add this code to functions.php

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

Post count: 35449

Hi tricksraman0923, one of the best solutions it is the one recommended by Satwik. You can use the code suggested and you can set it in a child theme, there is a file called functions.php -> https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thank you!

Post count: 3

Ok Thankyou so much both of you

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