Tagged: blog excerpt
Hi,
on our page
http://www.praxis-christiane-moeller.de/kontakt-service-info/aktuelles-service/
I use the blog entry element. On some entries there is a text excerpt, on others not (the latest 4 ones). I do not find the option to synchronize / edit this (i.e. no. of characters and font size) , neither do I see in the entries themselves a related code or so.
Thx a lot for your help & best regards Tilman
Hi Tilman!
Thank you for using Enfold.
The link above doesn’t exist. Please check if it’s the right one. The excerpt should be limited to a certain character or word count. You can use this plugin to control it: https://wordpress.org/plugins/advanced-excerpt/
Cheers!
Ismael
Sorry Ismael,
the correct link is here: http://www.praxis-christiane-moeller.de/kontakt-service-info/aktuelles/
the recommended plugin did not lead to any changes, even with trying various settings. I remember that in a earlier enfold version I could edit the excerpts directly in the post, but now this function seems to be gone (?) This is maybe also the reason that in my older posts I still have excerpts on the a.m. overview page, but no in newer ones..
thx a lo for an idea
cheers Tilman
Hi!
Please add following code to Functions.php file in Appearance > Editor and adjust as needed
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Best regards,
Yigit