HTML Tags and "Read more"

Hello,

first i want to thank your for this great and free theme.

I have two questions:

  1. How can i remove the HTML-Tags when somebody wants to add a comment
  2. The Text before the “read more” button on the front page should be more longer. Or is it possible to display the full post?

Thanks
Christoph

I see that you are haven’t looked into Theme Documentation: Travelify Theme Instructions - Colorlib

And also haven’t checked demo where it showcases Full Content display blog template: https://colorlib.com/travelify/blog-full-content/

To hide allowed HTML tags from comment field you can add this code to Theme Options - Other - Custom CSS

#respond form p.form-allowed-tags {
    display: none;
}

I’m really confused with the “read more” button.I just want my website(www.zairizhao.com) show more texts before the “read more” button on the front page,just like https://colorlib.com/travelify/.I see that each post of your website could show more than one line texts,then comes the “read more” button, and
I konw that you’re not using “Full content display” on page attributes.Need your help,and many thanks.

It should display 55 words before it shows read more button by default. The one thing that comes into mind is that WordPress might treat Chinese differently, so it could be that one symbol = one word. I am not sure about that but it does look like it.

But it is simple to use excerpt length filter via functions.php file.

function custom_excerpt_length( $length ) {
	return 200;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

this code will change excerpt length to 200 but you can change value to any number you want.