Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23241

    Hi, created my first blog website using Boldgrid.

    On the blog entry, i get under the discussion comments a bit about ”you may use these html tags…’ etc etc and a box with a load of code in it.  How can i remove this please?

    #23242

    Hello Peter,

    Thanks for submitting a question about the comment form. What you see is part of the template architecture WordPress has provided with a default comment form. This would fall under the category of general WordPress development. The safest way to edit these elements is to do so through a child theme. In the child theme, you can delete those elements safely.

    As an alternative, you can use the Custom CSS editor to “hide” the undesired elements:

    The latter would look something like this:

    .form-allowed-tags {
    visibility:hidden;
    }

    However, I would caution against making the changes yourself unless you are familiar with HTML, CSS, and PHP. If not, it would be best to contact a developer. This is a relatively small modification, but done incorrectly it could cause errors on the page or a blank white screen.

    Best,

    Christopher M.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘how to remove ‘you may use these html tags…’ on a blog form’ is closed to new replies.