Site logo

Archived topic

How to remove email and url field from the comment form ?

1 reply · Started by Tayla on August 31, 2018

Viewing posts 1–2 of 2

Hi! I want to remove the email and url fiel at the comments. i get it onced, but after new update, the fields still show. how can i remove them?

Hi there,

try this PHP snippet:

add_action( 'after_setup_theme', 'tu_add_comment_url_filter' );
function tu_add_comment_url_filter() {
    add_filter( 'comment_form_default_fields', 'tu_disable_comment_url', 20 );
}

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

https://docs.generatepress.com/article/adding-php/

Just make sure to check that neither are required in the wordpress settings.

This archived topic is closed to new replies.