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

    Hallo,

    wenn ich meinen Blog aufrufe (https://www.aw-impulse.de/blog/), werden die einzelnen Beiträge schön nebeneinander aufgeführt. Wenn ich aber eine Kategorie aufrufe, ist die Anzeige der Beiträge untereinander (z.B. hier: https://www.aw-impulse.de/category/business/). Wie kann ich das so einstellen, dass auch hier die Anzeige so ist, wie in der Blog-Anzeige?

    Außerdem wird teilweise der Textauszug angezeigt, und beim unteren Beitrag nicht, obwohl ich auch hier einen Textauszug eingegeben habe: https://www.aw-impulse.de/category/business/

    Danke für Support,
    Andreas

    #1491315

    Hey AndreasWinkler,

    Thank you for the inquiry.

    You can add this code to the functions.php file to apply the same grid layout to the category pages:

    add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); 
    function avf_blog_style_mod($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }

    Best regards,
    Ismael

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