Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #49566
    alexmo
    Member

    Hello Sakin

    as removing the text: “You may use these HTML tags and attributes …”
    under comments.

    Thanks

    #49592
    Sakin
    Keymaster

    @alexmo: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #form-allowed-tags { display: none; }

    #49603
    alexmo
    Member

    sorry, I can´t

    have another option

    Thanks

    #49644
    Sakin
    Keymaster

    @alexmo: I don’t get it what you mean and why you cannot add it. You can just add that CSS in Custom CSS Box.

    Another option is to build child theme and remove that code. For child theme read this http://catchthemes.com/blog/create-child-theme-wordpress/ and then in your child theme functions.php file you can add the following code:

    /**
     * Modify Comment Form Defaults
     */
    function catchkathmandu_comment_defaults( $defaults ) {
        
        $defaults['comment_notes_after'] = '';
    
        return $defaults;
    
    }
    add_filter( 'comment_form_defaults', 'catchkathmandu_comment_defaults' );
    #49649
    alexmo
    Member

    with this code “# form-allowed-tags {display: none;}” Does nothing.
    The second option is more complicated for me.

    Thank

    I want to eliminate “You may use HTML tags and attributes in Original …” there at the end of the comments.

    thanks again

    #49651
    Sakin
    Keymaster

    @alexmo: The CSS you have added in has space in-between # and form-allowed-tags. There shouldn’t be any space in-between. So, copy the css as below. I have tested in Catch Kathmandu Theme and it works fine.

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

    #49659
    alexmo
    Member

    Sorry!

    not me. I can do?

    Thanks Sakin

    #49700
    Sakin
    Keymaster

    @alexmo: Please add that CSS and send me your site URL then I will check in what’s wrong there.

    #49753
    alexmo
    Member

    experienciastic.com

    #49784
    Sakin
    Keymaster

    @alexmo: Thanks for sharing. There is correction in Custom CSS for your site. So, replace the custom css:
    #form-allowed-tags { display: none; }

    With the following css:
    #respond .form-allowed-tags { display: none; }

    #49795
    alexmo
    Member

    Brilliant!!

    Thanks

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘as removing the text…’ is closed to new replies.