Do you have a filter to change the Blog Post pagebuilder widget length?
Also so you have a list of all the filters you have added?
Tks,
Hey!
That shortcode uses the default WP excerpt, so a code like this in functions.php will do the job:
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
Best regards,
Josue
That was the first thing I tried bit not luck. I even tried to change the read more, etc. but no luck either.
Hey!
You can try setting a manual excerpt.
Cheers!
Josue
What is a manual excerpt?
Do you know where the code for the page builder Blog Post is located.
Hey!
The excerpt is a field that should appear after the content when editing the individual Post, if you don’t see it make sure it’s activated here:
Best regards,
Josue
I have tired using the excerpt filter on several Enfold sites both in the parent and child theme and no luck at all.
I have combed over the code and found where the_excerpt is being used but there so much…where is the code for the Page Builder, Blog Post element?
Hey!
/config-templatebuilder/avia-shortcodes/blog.php but the actual file that renders the content is /includes/loop-index.php, line 184 exactly.
Regards,
Josue