Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #638641

    Wonder how to set excerpt lenght for the Blog Post element? Word count is too small now and it needs to be increased. Thank you.

    #639081

    Hey emiliaro,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #639261

    I added link to the private content area. The Blog Posts element is set on the frontpage.

    #639265

    Hi!

    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

    #640158

    Thank you, this works for me now!

    #640369

    Hi,

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to adjust excerpt lenght for the Blog Post element’ is closed to new replies.