Archived topic
How to remove ( Website ) field from comment section ?
3 replies · Started by Den on December 8, 2020
Hello team,
I always get an amazing response from you guys. This time, I want you to help me remove the (Insert Website URL) section from the comment section.
Is there any way that I can use in order to remove this? by adding a CSS or something in the function.php? If yes, please do provide me the code to do the same.
Thanks in advance.
Hi Karam,
Add this PHP will remove the URL input:
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;
}
How to add PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Hey Thanks, It worked like magic :)
No problem :)