Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #847908

    Hey Guys,

    I’ve used the ‘Blog Posts’ option to display my blog posts but I’d like to add two more lines to the excerpt before the ‘ReadMore’ link so that the excerpt is four lines in total.

    Any idea how I can do this?

    Thanks!

    #847911

    Hey GeoCreo!

    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;
    }

    Best regards,
    Yigit

    #847940

    Thanks so much, Yigit! It worked perfectly :)

    #848072

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Increasing excerpt size of Blog Post’ is closed to new replies.