Archived topic
Remove comment URL field
4 replies · Started by Kaleem on March 11, 2020
Hello, I have tried many tricks, including this https://docs.generatepress.com/article/remove-e-mail-and-url-field-from-comment-form/ to remove the URL field in the comment but still, nothing happens.
Please any help to do this?
Thanks in advance.
Install Code Snippets Plugin
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;
}
Use this code and Hit Activate button.
Thank you
Hi there,
if you can add the code, and make sure to uncheck the requirement box and the clear any caches.
If the issue persists, try creating a new post with comments to see if it has been applied.
Let us know.
@Suraj, your solution rather worked for me.
Thank you all for your help.
Welcome :)