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

    Hi,
    I can’t find a way to increase the amount of text shown on the main blog page for each blog entry. Right now it’s only about 50 characters.

    Here is the development page link https://dev.fryeburgrec.com/. I have it showing on the home page

    Thanks in advance

    Tom Dean

    #1436703

    Hey webmaintain,

    Thank you for the inquiry.

    You can use the avf_postgrid_excerpt_length filter in the functions.php file to adjust the length of the excerpts in the grid layout.

    Example:

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

    Best regards,
    Ismael

    #1436817

    Thank you!

    #1436838

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘main blog page’ is closed to new replies.