Viewing 12 replies - 16 through 27 (of 27 total)
  • thanks guys – <?php comment_form(array('comment_notes_after' => '')); ?> works for me … ??

    ciao
    Rob

    @ Rev. Voodoo.

    Thanks! I used your code, and dropped it into my theme’s functions.php as suggested. This is the cleanest way to handle it. Thanks!

    Mike.

    @rev. Voodoo, great code! Thanks so much. Took me 30 seconds…

    @rev. Voodoo
    it works for me too… I use SWIFT theme. thanks.

    Thanks every1, it works….
    ??

    ebuali

    (@ebuali)

    <?php comment_form(array(‘comment_notes_after’ => ”)); ?>

    You cant even imagine how it helped me !

    Thanks a lot…

    gonghaima

    (@gonghaima)

    <?php comment_form(array(‘comment_notes_after’ => ”)); ?>
    Brilliant, it took me whole day yesterday to tackle the problem. I have been went through every files in cPanel, and couldn’t find and delete those annoying words in comments.

    dorr4wp

    (@dorr4wp)

    FINALLY figured it out! in the comment php, I had to replace this:
    <?php comment_form(); ?>
    with this: <?php comment_form(array(‘comment_notes_after’ => ”)); ?>

    Worked in silent film theme as well thank you

    dante$$$

    (@sparta84)

    humbleopinion:

    FINALLY figured it out! in the comment php, I had to replace this:
    <?php comment_form(); ?>
    with this: <?php comment_form(array(‘comment_notes_after’ => ”)); ?>

    This works for the swift theme!

    Yippee.. It`s work for my theme too..Thanks. ??

    deight

    (@deight)

    It worked on my Senior Care Community Website! Thank you very much! You can’t even imagine how long I’ve been looking for this simple line of code.

    Now, does anybody know how I change “Leave a Reply” above Comment Window to something else?

    another way to do it with just css would be:

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

    Hey, Webgrafter – your css code version is more elegant and works better where the comments.php line being replaced has a lot of attributes.

    Losing these can cause issues. For example my comments.php line had:

    <?php comment_form( array(‘label_submit’ => esc_attr__( ‘Submit Comment’, ‘TheCorporation’ ), ‘title_reply’ => ‘<span>’ . esc_attr__( ‘Leave a Reply’, ‘TheCorporation’ ) . ‘</span>’, ‘title_reply_to’ => esc_attr__( ‘Leave a Reply to %s’ )) ); ?

    Quite a line. Shortening it made the text overflow the submit button, so the css fix let me keep this line and lose the html hints, thanks!

Viewing 12 replies - 16 through 27 (of 27 total)
  • The topic ‘Remove You may use these HTML tags and attributes’ is closed to new replies.