Viewing 9 replies - 1 through 9 (of 9 total)
  • this is a common part of the output for comment forms – no junk.

    for example, try to add via a ‘custom CSS’ plugin:

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

    or review the existing forum topics per forum search https://www.ads-software.com/search/remove+comments+html?forums=1

    Thread Starter Dave Davies

    (@dave-davies)

    Sorry, I am not understanding what the reply means. Are you saying that it is supposed to be below the comment field because it is telling people they can use HTML code in the comment box?

    I went to the forum link and it just shows a screen that just continues to say loading

    “try to add via a ‘custom CSS plugin:” try to add what? I didn’t add anything the wording was already there.

    Sorry but brand new at Word Press so I was not following the reply

    put this code in the bottom of the function.php file

    add_filter( 'comment_form_defaults', 'remove_comment_form_allowed_tags' );
    function remove_comment_form_allowed_tags( $defaults ) {
    
    	$defaults['comment_notes_after'] = '';
    	return $defaults;
    
    }
    Thread Starter Dave Davies

    (@dave-davies)

    Added it to the functions.php file that is in the twentyfiteen folder which is in the themes folder but it did not seem to change the site. I looked around and saw there were lots of funtions.php files in different folders. Was I supposed to add it to a different folder or to all the places I find a functions.php file?

    Thread Starter Dave Davies

    (@dave-davies)

    Different question
    Is there a way to get the subtitle on the header centered? Sorry I guess it is actually called the tagline (at the top of the page)

    get the subtitle on the header centered?

    install one of the ‘custom CSS’ plugins; like https://www.ads-software.com/plugins/wp-add-custom-css/

    add this CSS via the custom CSS plugin:

    #site-header { display: block; float: none; }
    .site-description { text-align: center; }

    at the same time, you can add the suggested CSS from the first question:

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

    you might need to clear the browser cache to get to see the changes immediately.

    you must add the function I give u to the active theme function.php file

    Thread Starter Dave Davies

    (@dave-davies)

    Thanks!!!! I loaded the WP CSS added the code for both and it took care of both issues! Thanks!

    Thread Starter Dave Davies

    (@dave-davies)

    I just changed from using the tag line description to site title and now the site title is not loading with text align center. How do I get the site title centered?
    https://www.livekingdomlife.org/

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Catch Base has extra words showing on website’ is closed to new replies.