Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #802091

    Dear Enfold Team,
    At first I am quite lucky with enfold. But today I have an issue with the blog excerpt. It seem to be the same problem like this https://kriesi.at/support/topic/blog-layout-21/#post-797170.
    I used the Advanced Avia Layout Builder in the Blog Editor. Unfortunatelly there is no blog excerpt in the Blog Raster with three coloums. Here you will find the problem: http://wp.me/P8ll3c-h#news.
    If I didn’t used the Advanced Avia Layout Bilder in the Blog Editor the problem doesn’t appear.
    Do you have any Ideas?
    Thanks in Advance.
    Kind regards,
    Christian

    #802378

    Hey Christian,

    When you use the Layout Builder for posts then you will have to set the excerpt manually. If you can’t see the field in your posts then please click Screen Options in the top right hand corner of the screen and select it there.

    Best regards,
    Rikard

    #849356

    Hi there,

    I have a site where some of the excerpts are manual and some aren’t as 2 people are using the blog in the way that suits them (one like s the avia editor and the other likes the default editor). Is there a way to tell the blog to show the manual over the automatic if it is present?

    #849651

    Hi Briana,

    If the Layout Builder is activate when the post is saved then the manual excerpt will be used. If the default editor is active, then the automatic excerpt will be used.

    Best regards,
    Rikard

    #858198

    How can I make enfold use the manual excerpt with the default editor active?

    #858785

    Hi,
    The manual excepts should be used first if present, I tested this on a clean install and it worked.
    2017-09-30_113643
    If this is not true for you perhaps there is a plugin conflict or a custom function working?

    Best regards,
    Mike

    #858874

    I also tested it on a fresh install, with the default enfold demo.

    It works with the manual excerpt in some blog layouts, but it does not work in others.
    It works in : masonry blog and blog grid
    But it does not work in the others.

    How can I make it work in the others too?

    #858931

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter( 'the_content', 'replace_content_with_excerpt', 100 );
    function replace_content_with_excerpt( $content )
    {
        if ( is_singular() )
        {
            return $content;
        }
            remove_filter( 'the_content', __FUNCTION__, 100 );
        $excerpt = apply_filters( 'the_excerpt', get_the_excerpt() );
        add_filter( 'the_content', __FUNCTION__, 100 );
        return $excerpt;
    }

    Best regards,
    Mike

    #858956

    Worked perfectly,
    Thanks!

    (might be something for the next theme update?)

    #858983

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Blog excerpt not displayed’ is closed to new replies.