On our home page we have the magazine widget in with the first post larger than the rest. Is there any way we could have more of the preview text showing and/or a Read more link?
Hey jaimemerz!
Thank you for using Enfold.
Add this in the functions.php file to increase the magazine excerpt:
add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
function avf_magazine_excerpt_new_lenght($excerpt) {
$excerpt = 200;
return $excerpt;
}
Regards,
Ismael