Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #405215

    Hi Guys, is there a css code to reduce the excert length displayed on the blog page. I have created a page called Blog and inserted the Blog Posts in the builder, all works fine but ideally would like less excert, any ideas?

    Thanks in advance… :-)

    #405218

    Hey stephenturner!

    Please add following code to Functions.php file in Appearance > Editor and change it as needed

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 50;
       return $length;
    }

    Cheers!
    Yigit

    #405221

    thanks for the quick response… :-)

    #405223

    please close this question as answered, thanks again!

    #405226

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Reduce Excert Length in Enfold’ is closed to new replies.