Viewing 6 posts - 1 through 6 (of 6 total)
-
AuthorPosts
-
August 23, 2022 at 9:30 am #1362462
Hello, i tryed to change the excerpt lenght for a blog view on the front page with this Filter:
function enfold_postgrid_excerpt_length($length) { $length= 50; return $length; } add_filter('avf_postgrid_excerpt_length','enfold_postgrid_excerpt_length', 10, 1);
But nothing happened. I added the filter to the functions.php of the child theme. Can you plz have a look why the filter is not working?
Best regards
Chris
August 23, 2022 at 12:23 pm #1362484can you try this instead:
i think that all these blog views are influenced by postslider.php – and there is that filterfunction custom_post_slider_entry_excerpt( $excerpt, $prepare_excerpt, $read_more, $entry, $obj_post_slider = null ){ $modify = true; if( $modify ){ $new_excerpt_length = 50; $excerpt = substr( $excerpt, 0, $new_excerpt_length ) . $read_more; } return $excerpt; } add_filter( 'avf_post_slider_entry_excerpt', 'custom_post_slider_entry_excerpt', 10, 5 );
August 23, 2022 at 12:48 pm #1362491Hi Guenni007,
thanks a lot! That works! one other thign: How can i make the excerpt end with 3 dots?
Thanks!
August 23, 2022 at 12:49 pm #1362492try:
function custom_post_slider_entry_excerpt( $excerpt, $prepare_excerpt, $read_more, $entry, $obj_post_slider = null ){ $modify = true; if( $modify ){ $new_excerpt_length = 50; $excerpt = substr( $excerpt, 0, $new_excerpt_length ) . ' …'; } return $excerpt; } add_filter( 'avf_post_slider_entry_excerpt', 'custom_post_slider_entry_excerpt', 10, 5 );
Edit : no that will be too easy.
just a moment …
August 23, 2022 at 12:59 pm #1362495function custom_post_slider_entry_excerpt( $excerpt, $prepare_excerpt, $read_more, $entry, $obj_post_slider = null ){ $modify = true; if( $modify ){ $new_excerpt_length = 150; $excerpt = substr( $excerpt, 0, $new_excerpt_length ) . $read_more; } return $excerpt . '...'; } add_filter( 'avf_post_slider_entry_excerpt', 'custom_post_slider_entry_excerpt', 10, 5 );
this works :-)
Thanks for the good support
August 23, 2022 at 1:03 pm #1362498Hi,
We are happy that @guenni007 helped :)
@guenni007 thanks for your help as always :)Best regards,
Yigit -
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)
- The topic ‘change excerpt lenght not working.’ is closed to new replies.