Wonder how to set excerpt lenght for the Blog Post element? Word count is too small now and it needs to be increased. Thank you.
Hey emiliaro,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
I added link to the private content area. The Blog Posts element is set on the frontpage.
Hi!
Please add following code to Functions.php file in Appearance > Editor
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
Thank you, this works for me now!
Hi,
glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Best regards,
Andy
