Remove URL in comments field

Afternoon,

Can you provide coding and where to add it to remove URL in comments field.

Can see this in previous advice:

p.comment-form-url {
display: none;
}

p.form-submit {
clear: both;
}

Where would I put it.

Thanks
Gemma

Hi Gemmma,

To do that, please add this code to the functions.php file of the child theme:

function disable_comment_url($fields) { 
    unset($fields['url']);
    return $fields;
}

add_filter('comment_form_default_fields','disable_comment_url');

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.