Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #625961

    Hi,

    I’m trying to increase the length of the category excerpts in the magazine content display for blog posts. I only want the excerpt length to be longer for the av-magazine-hero side of the layout. I found the following filter in support but I’m not sure what needs to be changed in order for it to work.

    The page I’m working on is in private content.

    Thanks.

    add_filter(‘avf_postgrid_excerpt_length’,’avia_change_postgrid_excerpt_length’, 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
    $length = 100;
    return $length;
    }

    #626440

    Hey connect4consulting,

    Please use following code instead

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
    function avf_magazine_excerpt_new_lenght($excerpt) {
    $excerpt = 100;
    return $excerpt;
    }

    Best regards,
    Yigit

    #626563

    Thank Yigit.
    Is there documentation somewhere about all the possible filters?

    #626565

    How would I set this up so that the first post isn’t an excerpt? It shows the full post.

    #628067

    Hi,

    I’m sorry but the theme filters aren’t fully documented yet. Regarding the other inquiry, increase the value in the filter. Set it to 9999 or higher.

    Best regards,
    Ismael

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