Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1362436

    My question is about the design / content of the blog’s “default” teaser list.
    I use “single-big” – Single author, large thumbnail (no author image shown, large feature image)

    When using the Gutenberg editor, the entire article is displayed in the teaser list, when using the “extended Envold editor” the post-excerpt appears.
    How can I control this behavoir?

    I deliberately don’t use the “advanced editor” because I haven’t found a way to use the advanced editor for the “archive/..” , “category/..” or “tag/..” lists.
    So if you have any suggestions to user the “advanced editor” for archive / category / tag lists it would be also a solution for my problem.

    #1362928

    Hey markusroesslersugabeet,
    Thanks for your question, when you use the Gutenberg editor the Enfold Advanced Layout Builder options will not apply, so you will only be able to use the options offered by the Gutenberg editor.
    The Advanced Layout Builder will not edit the “archive/” , “category/” or “tag/” lists.
    If you want to change category page layout to blog single big style, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-big';
    return $layout;
    }

    to do the same for the tag page, also add this to your child theme functions.php:

    add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); 
    function avia_change_tag_blog_layout($layout, $context){
    if($context == 'tag') $layout = 'single-big';
    return $layout;
    }
    

    Best regards,
    Mike

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