[Resolved] remove website field on comment form

Home Forums Support [Resolved] remove website field on comment form

Home Forums Support remove website field on comment form

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #802525
    Marco

    Hello

    as to the info I found the following code is supposed to remove the “website” field on the post comment form – however, the field still shows – any ideas??

    /* Remove website (url) field on comment form
    ---------------------------------------------------------------------------- */
    function themeprefix_disable_comment_url($fields) { 
        unset($fields['url']);
       
    	return $fields;
    }
    add_filter('comment_form_default_fields', 'themeprefix_disable_comment_url');
    #802566
    Leo
    Staff
    Customer Support
    #802572
    Marco

    thanks – that did the trick

    #802582
    Leo
    Staff
    Customer Support

    No problem 🙂

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