• Dbswain91

    (@dbswain91)


    Hello, I’d like to delete the “website” text field area in the comment area. I am doing this because I am trying to make my comment section as simple as possible. Any thoughts on how to do this?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • tscott_85

    (@tscott_85)

    Add this to the bottom of functions.php

    function ra_remove_comment_url_field( $field ) {
    return ”;
    }
    add_filter( ‘comment_form_field_url’, ‘ra_remove_comment_url_field’ );

    ElectricFeet

    (@electricfeet)

    This must be sledgehammer-nut day ??

    @dbswain91: The solution is much simpler: Add the following to the Custom CSS panel in Customiz’it:

    .comment-form-url {
        display: none;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Deleting "website" field in Comment Area’ is closed to new replies.