Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #27043

    I’m trying to use the Post Slider in Enfold theme to display short quote snippets that have been saved as individual posts with a specific category. I have noticed that it only reads a few characters of the associated post and truncates when displayed.

    1) Is there a setting where I can extract more text from the source post?

    2) Is there a way to use other jquery transitions for the slider instead of fade? Would be nice if we could use a carousel.

    #132552

    1) Yes – use following code to change the excerpt length:

    add_filter('avf_postgrid_excerpt_length','avia_change_excerpt_length',10,1);
    function avia_change_excerpt_length()
    {
    return 100;
    }

    Insert it at the bottom of functions.php and increase/decrease the return value.

    2) No, at the moment the slider just supports a fade effect.

    #132553

    Works like a charm, thanks for that.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold – Post slider excerpt length’ is closed to new replies.