Hi,
we set a read more tag in editor and use the blog posts module. Unfortunately I can only select to show the excerpt, which is then stopping after some words or just show the title, no excerpt at all. How can I configure it, that the whole text until “read more” is shown on the blog page or categories page. Example:
https://tinyurl.com/2b89g354
And here what setup I used on this module:
https://tinyurl.com/26rgdbvg
Thanks.
Hey TobiasLutzi,
Thank you for the inquiry.
By default, the theme displays the whole excerpt, and you cannot use the read more tag to control it. However, you can use the following filter if you need to adjust the excerpt length:
function avia_excerpt_length_mod($length) {
return 200;
}
add_filter('excerpt_length', 'avia_excerpt_length_mod');
Best regards,
Ismael