I’d like to be able to display the full text of a blog post on this grid blog page:
http://stagshead.studiovinka.com/events/
I’m using blog post categories to create the Event page, and the entries are short enough that I’d really like to display full text even in grid format, or at last customize the excerpt length (which I also can’t figure out).
Hi studiovinka!
Thank you for visiting the support forum.
Please add this in the functions.php file to show the full content of the blog posts:
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 99999;
return $length;
}
Regards,
Ismael