[Resolved] How to remove ( Website ) field from comment section ?

Home Forums Support [Resolved] How to remove ( Website ) field from comment section ?

Home Forums Support How to remove ( Website ) field from comment section ?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1572026
    Den

    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.

    #1572174
    Ying
    Staff
    Customer Support

    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 πŸ™‚

    #1572192
    Den

    Hey Thanks, It worked like magic πŸ™‚

    #1572200
    Ying
    Staff
    Customer Support

    No problem πŸ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.