• Resolved ksapub

    (@ksapub)


    I want to remove the “website” field from the Comments form.

Viewing 2 replies - 1 through 2 (of 2 total)
  • WEN Solutions

    (@wen-solutions)

    Add the below code on functions.php

    function alter_comment_form_fields($fields){
        $fields['url'] = '';  //removes website field
        return $fields;
    }
    add_filter('comment_form_default_fields','alter_comment_form_fields');

    If not work, feel free to ask.
    Note: Child theme is recommended to customize theme.

    Thread Starter ksapub

    (@ksapub)

    I have been pasting code but not deactivating jetpack….therefore, when I did this finally worked. thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove url field from comments form’ is closed to new replies.