Currently, I can select the first entry in the magazine blog layout (Enfold) and it will display the excerpt of the entry. Is there a way to easily modify the theme so that it shows the excerpt for all of the entries as well?
Thanks
correction, display the excerpt for the TOP entry. I’d like to display excerpts for all entries.
I’m wondering about the same thing also : )
Yeah, I’ve searched through everything and I can’t figure out how to display the excerpt on all of the entries. I really need this. Please advise.
Hi!
Open up wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\magazine.php and replace:
$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small";
with
//$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small";
$style = (!empty($this->atts['first_big'])) ? "big" : "small";
and tick the “Should the first entry be displayed bigger” checkbox.
Regards,
Peter
Thanks Dude!