Hi,
I would like my blog post excerpts to be just the first sentence of my post and include an image.
How can I achieve this in Enfold? My image does not show up.
Thanks
Hi nicsans!
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;
}
and can you post the link to your blog page?
Cheers!
Yigit