Tagged: 

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

    Hello, in the blog post grid I’d like to change the excerpt lenght. Can you please direct me in the right direction, which PHP file I have to edit?

    Thanks!

    #283078

    Hey originaltours!

    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

    #291450

    Thanks, that fixed it, can be closed.

    #291459

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Changing Excerpt lenght’ is closed to new replies.