Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #444048

    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?

    #444319

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.