Archived topic
remove website field on comment form
3 replies · Started by Marco on February 5, 2019
Viewing posts 1–4 of 4
Hello
as to the info I found the following code is supposed to remove the "website" field on the post comment form - however, the field still shows - any ideas??
/* Remove website (url) field on comment form
---------------------------------------------------------------------------- */
function themeprefix_disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields', 'themeprefix_disable_comment_url');
Hi there,
This should help:
https://docs.generatepress.com/article/remove-e-mail-and-url-field-from-comment-form/
thanks - that did the trick
No problem :)
This archived topic is closed to new replies.