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

    It seems to be fairly random

    see
    https://www.physicsforums.com/insights/

    #447993

    Hi dethfire!

    You can add following code to Functions.php file in Appearance > Editor to adjust excerpt length of blog grid

    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

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