• Hi,

    I inserted the code below in functions.php but it is not applied on Astra theme so the website section is still displayed on the comment.

    add_filter('comment_form_default_fields', 'website_remove');
    
    function website_remove($fields)
    {
    if(isset($fields['url']))
    unset($fields['url']);
    return $fields;
    }

    I can use display:none to hide it but I want to know how I can completely de-activate it like the code in concern.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can’t I make the website section fully deactivated when I write comments?’ is closed to new replies.