Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #255253

    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,

    #255308

    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

    #255874

    That was the first thing I tried bit not luck. I even tried to change the read more, etc. but no luck either.

    #255909

    Hey!

    You can try setting a manual excerpt.

    Cheers!
    Josue

    #255924

    What is a manual excerpt?

    Do you know where the code for the page builder Blog Post is located.

    #255926

    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

    #255938

    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?

    #255949

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.