Hey GeneratePress support,
No matter what I do, I can’t seem to remove this Website field on my site.
https://gyazo.com/e1f8436ee5f9334be39d2ef40065c4f6
I also want to remove the checkbox.
I’ve tried adding a css snippet.
.comment-form #url{
display:none;
}
I then removed the css and added a 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']);
return $fields;
}
Still it’s not removing the URL field. How do I remove both the URL field and the checkbox? I’d rather not add a plugin if I don’t have to.