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

    Hi, I would like to delete “Website” field on Post “Leave a replay” form.

    #749183

    Hey gzelasco,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #749960

    Im refering to the POST default from
    ·Leave a Reply·

    #749967

    Hi,

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('comment_form_default_fields','av_remove_url_input');
    function av_remove_url_input($fields) { 
        unset($fields['url']);
        return $fields;
    }

    Best regards,
    Yigit

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