Hi,
I can’t find a way to increase the amount of text shown on the main blog page for each blog entry. Right now it’s only about 50 characters.
Here is the development page link https://dev.fryeburgrec.com/. I have it showing on the home page
Thanks in advance
Tom Dean
Hey webmaintain,
Thank you for the inquiry.
You can use the avf_postgrid_excerpt_length filter in the functions.php file to adjust the length of the excerpts in the grid layout.
Example:
add_filter('avf_postgrid_excerpt_length','avf_change_postgrid_excerpt_length', 10, 1);
function avf_change_postgrid_excerpt_length($length)
{
$length = 200;
return $length;
}
Best regards,
Ismael
Thank you!
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike