-
-
Hi again,
I’m now using the blog view ‘creative’ which I really like, but what is really important is that it displays the blog posts in their entirety – without cutting the posts short. At the moment, it displays a maximum of three lines of text and then […] – this seems the way with all blog view options. Is it possible to show the entire post in ‘creative’ view?
https://www.advent-im.co.uk/blog-timeline/
Thank you.
-
Just to add to this, even the ‘standard’ blog view does not allow for a full post – even when I ensure that ‘full post’ is checked for ‘for each article in a feed, show’ under the settings > reading tab. I’d prefer to use the ‘creative’ blog view, is there any custom css code I can add to disable it cutting the posts short?
Thank you.
-
Hello,
Can you please be more specific? What blog type do you want to use? To display more text you need to edit theme files.
To display more text in blog creative style, please go to file includes/view/blog/loop-creative.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();
replace this line:
echo get_the_excerpt();
with this:echo codeless_text_limit(get_the_content(), 60);
The value: 60, is the number of words to display. Edit it to your wish.Best regards!
-
Hi Mihailam
Thank you for your reply, it is much appreciated. This is exactly what I needed to allow the blog content to display as requested. Thanks once again for your help. Please feel free to close this topic.
Best regards.
-
You must be logged in to reply to this topic.