Archived topic
remove website input box from comment section and modify header
3 replies · Started by Linux TLDR on November 17, 2022
Viewing posts 1–4 of 4
I just want to remove website input box from the comment section not hiding it and modify the text for "Leave a comment" with something else as shown in the following picture.
Hi there,
try adding this PHP Snippet to your site:
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;
}
in which page do I've to add it? and how do i modify the comment header?
That code is PHP.
This doc explains how to add the PHP:
This archived topic is closed to new replies.