Home › Forums › Support › remove website input box from comment section and modify header This topic has 3 replies, 2 voices, and was last updated 3 years, 5 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts November 17, 2022 at 6:41 am #2419553 Linux TLDR 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. November 17, 2022 at 6:58 am #2419576 DavidStaff Customer Support 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; } November 17, 2022 at 7:00 am #2419581 Linux TLDR in which page do I’ve to add it? and how do i modify the comment header? November 17, 2022 at 7:08 am #2419596 DavidStaff Customer Support That code is PHP. This doc explains how to add the PHP: https://docs.generatepress.com/article/adding-php/ Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In