Tagged: 

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

    Hi there,

    Currently post slider shows first several characters of the post (67 if I’m correct). Is it possible to show everything before “Read more” shortcode.

    Thanks,
    Max

    #216968

    Hi maximadz!

    You can add this on functions.php to increase the excerpt length:

    add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
    
    function avf_increase_postgrid_excerpt_length($prepare_excerpt) {
    	$prepare_excerpt = 300;
    	return $prepare_excerpt;
    }

    Change 300 to a greater number if necessary.

    Regards,
    Ismael

    #218614

    Hi Ismael,

    Works well, thanks!
    I presume there’s no way to generate excerpt relying on “read more” tag?

    Thanks,
    Max

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