Reply To: Remove/Hide Comment URL

Home Forums Support Remove/Hide Comment URL Reply To: Remove/Hide Comment URL

Home Forums Support Remove/Hide Comment URL Reply To: Remove/Hide Comment URL

#92220
Tom
Lead Developer
Lead Developer

This PHP snippet should work:

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

You can add it using your child theme’s functions.php file, or a plugin like this: https://wordpress.org/plugins/code-snippets/