• On the comment form, I removed the website URL box with the additional CSS:

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

    That seemed to work well, but under the comment form there’s a checkbox to:

    “Save my name, email, and website in this browser for the next time I comment.”

    I want that to take the “website” part out so that it reads “Save my name and email in this browser for the next time I comment.”

    I am relatively new to WordPress and don’t know HTML, but think that I might have to edit the code to get what I’m looking for?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Looking at the code for that section, this line shows what you can do:

    $fields = apply_filters( 'comment_form_default_fields', $fields );

    So you can set up a filter that will let you change the text, and other settings, for the fields on the form.

Viewing 1 replies (of 1 total)
  • The topic ‘customizing information in comments section’ is closed to new replies.