B
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Graphy] Home Page posts do not respect "Full Text" optionStill intersted in theme developer response, but I resolved the issue using this tip:
Link to post: http://ww.wp.xz.cn/support/topic/full-posts-on-main-page?replies=12
Thats the beauty of the theme. It uses the WordPress automatic excerpt by default. Unfortunatly it supports only the excerpts.http://codex.ww.wp.xz.cn/Function_Reference/the_excerpt
http://codex.ww.wp.xz.cn/ExcerptYou can try to swap the excerpt() with the content(). Open the content-*.php and replace this code:
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div>with this:
<div class=”entry-content”>
<?php the_content(); ?>
</div>Remember that the theme is not supporting the “full format” on the the blog main page. So with changing the code you maybe have to deal with additional issues, like formatting or images of the “full format”.
Forum: Themes and Templates
In reply to: [Graphy] Home Page posts do not respect "Full Text" optionI came to support for this theme because i want to resolve the same exact issue. I don’t see a reply. How do I get the homepage to show full text posts? Here is my site: http://www.kitchenremodelingchicago.org/
Please reply!