Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello.

    You can add this

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

    at the end of the theme’s functions.php file.

    Thread Starter nycplugged

    (@nycplugged)

    Added to my child theme. Didnt work..think Ill just deal with it.
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Website Field From Comments’ is closed to new replies.