Hi support,
Regarding this post – https://kriesi.at/support/topic/blog-excerpt-not-displayed/ – which I got working on my website, then I would like to adjust the lenght of the excerpts.
Where can I do that?
Thanks :-)
/OKEIwebbureau
Hey,
Please add following code to bottom of functions.php file of your child theme – https://kriesi.at/documentation/enfold/child-theme/
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
and adjust the value, “100” as needed :)
Regards,
Yigit
Hi Yigit,
It didn’t work for me, but you got me on the right track….so I found this on the internet:
add_filter( ‘excerpt_length’, function($length) {
return 100;
} );
…which I placed at the bottom of the functions.php.
And it works :-)
Thanks :-)
/OKEIwebburreau