Home › Forums › Iconic One Pro Support › HTML format in each posts at top page are lost..
- This topic has 6 replies, 2 voices, and was last updated 11 years, 2 months ago by hiroshifuruta.
- AuthorPosts
- September 18, 2013 at 11:27 am #733hiroshifurutaParticipant
My blog top page of posts are not shown in HTML format but in plain text.
Each blog posts can bee shown successfully in HTML.
What is happen?
In case I changed my page theme from Iconic One Pro to others, My top page are shown in HTML format.
How to fix this HTML format issue?
Hiroshi FurutaSeptember 18, 2013 at 11:47 am #734Themonic-SupportKeymasterHi Hiroshi,
Could you show us this HTML issue on your website? please provide complete details so that we can help you.
September 18, 2013 at 1:07 pm #736hiroshifurutaParticipantSeptember 18, 2013 at 2:19 pm #737Themonic-SupportKeymasterWhat should I look for in there?, everything appears normal to me. Am I missing something?
September 19, 2013 at 5:20 am #746hiroshifurutaParticipantAt the top page, HTML tag seems to be ignored,
as follows.
“We will have oral and poster presentations in the 74th JSAP Autumn meeting 2013 at DOSHIHA univ. on 16th – 19th Sept. Please join and discuss with us. test1 test2 test3”I think It should be shown as follows.
We will have oral and poster presentations in the 74th JSAP Autumn meeting 2013 at DOSHIHA univ. on 16th – 19th Sept.
Please join and discuss with us.
- test1
- test2
- test3
September 19, 2013 at 8:57 am #749Themonic-SupportKeymasterI got it.
This is because the home page displays Excerpts
http://codex.wordpress.org/Excerpt.It is set to cut off of posts after 70 words with a Read More link.
You can use the more tag from the WP editor screen to cut posts before that if you like, else write normally with few amount of words in the first para so that all extra things come after 70 words. Besides, if excerpts were to show HTML content the home page layout will look uneven.Another solution for you:
You can display full posts on home page with HTML using the below edit:Open Content.php
Go to line 50
<?php if ( is_home() || is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, home, category and tag pages ?>
Replace that line with
<?php if ( is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, category and tag pages ?>
Now full posts with HTML will show on homepage, if you want to break posts – use the more tag.
October 9, 2013 at 11:31 am #965hiroshifurutaParticipantIt worked fine to show the top page in HTML format,
as you showed,
<?php if ( is_search() || is_category() || is_tag() || is_author() ) : // Display Excerpts for Search, category and tag pages ?> in content.php at line 50.
Thank you. - AuthorPosts
- You must be logged in to reply to this topic.