Viewing 1 reply thread
You must be logged in to reply to this topic.
here is the page in question: https://visualabdev2.com/best-blog/
we’d love to show the full blog post and not just the excerpt. is there any way to do this? i have everything i can think of without success.
thanks in advance!
douglas
Hello,
Please go to file includes/view/blog/loop-index.php and find these lines:
<div class="text">
<?php
if(is_single()){
the_content();
}else{
if($post_format == 'video' || $post_format == 'audio')
echo codeless_text_limit(get_the_content(), 60);
else
echo get_the_excerpt();
}
?>
</div>
Replace echo get_the_excerpt(); with: echo get_the_content();
Save file and refresh.
Best regards!
You must be logged in to reply to this topic.