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

    How do I take off the amount of characters set for the excerpt when I’m using the peach builder? I would like to show some of my posts entirely (since they are only considered as statuses) in a single page.

    This means that I won’t need the “read more” button. I just want to show my blog posts with the title and the contents. How do I do this?

    Also, is there a way to take off the featured images? I would like to have this option also. (if possible)

    #623823

    Hey aafable!

    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 = 400;
       return $length;
    }

    Regards,
    Yigit

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