Viewing 1 reply thread
You must be logged in to reply to this topic.
Is there a special way, (other than going to >SETTINGS>READING) to change the blog post to full text? I went into the reading settings, clicked the box for full-text posts but they still show up summary text for each blog post.
Hello,
To display all text instead of excerpt, please go to file \includes\view\loop-index.php and find these lines:
if($post_format == 'video' || $post_format == 'audio')
echo codeless_text_limit(get_the_content(), 60);
else
echo get_the_excerpt();
Replace this line: echo get_the_excerpt();
with this: echo get_the_content();
Best regards!
You must be logged in to reply to this topic.