Tagged: carousel, post slider, posts, slides
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.
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.
Works like a charm, thanks for that.