• Resolved berli50

    (@berli50)


    Hi i has spam in my website… how can i remove url field from my child theme in my functions.php?
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter berli50

    (@berli50)

    Ok i resolved my problem hehe the code is:

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

    Thank You sooooo much..!! @berli50. I searched a lot to solve this problem. The only code worked is yours. You made my day. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to Remove URL / Website Field from WordPress Comment Form?’ is closed to new replies.