Tagged: Blog
HI,
I am using a blog on my site
– I’d like to increase the number of lines (or characters) of the preview text for each blog entry. Right now it’s only 2 lines. how can I do that?
– I’d like to know that size of the image that enfold ends up showing, so I know what to size the image for the upload.
thank you :-)
Hey!
– 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;
}
– Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_without_sidebar
image size (increase its width / height).
4. Regenerate the thumbnails by clicking the button at the bottom.
Best regards,
Yigit