So I would like to use it on my home page – to do so, I need three amendments
1) Alter the image size used from the magazine size to the entry_without_sidebar size
2) extend the amount of excerpt output for the first ‘large’ item
3) add an excerpt for each of the smaller items below
Where will I find the magazine layout code – is it a shortcode? Any pointers on the above changes would also be awesome!
Oh and should I do this in a child theme?
Hey DavidMiles!
Thank you for using Enfold.
1.) Use the Simple Image Sizes plugin to adjust the size of the magazine thumbnail.
2.) Use this on functions.php to increase the excerpt:
add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
function avf_magazine_excerpt_new_lenght($excerpt) {
$excerpt = 100;
return $excerpt;
}
3.) Please refer to this link: https://kriesi.at/support/topic/show-excerpt-in-all-magazine-blog-list/#post-259924
Cheers!
Ismael
Sorted – many thanks Ismael