• krepsinioblogas

    (@krepsinioblogas)


    Hello guys. I have a problem with:

    You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b>
    <blockquote cite=""> <cite> <del datetime=""> <em> <i> <q cite=""> <strike> <strong></p>

    Can anyone tell me step by step, how to delete this?
    my blog adress http://krepsinioblogas.puslapiai.lt/
    thanks for answers

Viewing 11 replies - 1 through 11 (of 11 total)
  • Michael

    (@alchymyth)

    please mark the code using the ‘code’ button, to keep it readable.

    and what is the problem?

    looks ok to me.

    Thread Starter krepsinioblogas

    (@krepsinioblogas)

    Under the comments, theres this line You may use these HTML tags and attributes: <a href="" title="">................................</a>

    What theme are you using?

    Thread Starter krepsinioblogas

    (@krepsinioblogas)

    Im using EvoLve 1.2.4

    That text is part of the standard comment_form() function built into WordPress. In order to actually stop that text from appearing on the page at all, you would have to override the defaults for that function, which might look something like:

    <?php
    add_filter( 'comment_form_defaults', 'remove_allowed_comment_tags' );
    function remove_allowed_comment_tags( $defaults=array() ) {
        unset( $defaults['comment_notes_after'] );
        return $defaults;
    }
    ?>

    However, if you just want to hide that text (it will still be found in the source of each page, but visitors using CSS won’t see it), you can add the following CSS definition to your stylesheet:

    .form-allowed-tags { display: none; }
    Thread Starter krepsinioblogas

    (@krepsinioblogas)

    Can u tell me step by step how to hide it? im new in this kind of think ;/

    Go to Appearance -> Editor in your administration area
    At the bottom of style.css (which is the file that should load by default when you go to the Editor), add the following code:

    .form-allowed-tags { display: none; }

    Press the “Save” button

    Wansbrough

    (@wansbrough)

    Been looking for this. Thankyou

    Hi, been trying to do this with a twenty ten theme. However, I still don’t know where to place it. At the bottom of the style.ccs it doesn’t work. At the very bottom of the file is a { on the far right. I tried to put what you said beside that, below that etc. etc. etc.

    Any further words of wisdom for me? It would be much appreciated.

    hey you want to delete this below comment section right.

    i want show comment box at all posted page but not showing give me step by step information

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Problems with comments’ is closed to new replies.