Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1373217

    I have changed the bloglayout to https://kriesi.at/documentation/enfold/blog-post/#blog-style
    to “Use the advanced layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)”.
    Change the bloglayout i the page and also in the blog page settings.
    but doesnt work
    see http://neu.zmo-gmbh.de/

    #1373219
    #1373306

    Hi,
    Thanks for your question, looking at your /kategorien/ page it looks like you have disabled some of the meta options and now have some unwanted borders, to haide these please add this CSS to your General Styling ▸ Quick CSS field:

    #top.page-id-3564 .main_color.fullsize .template-blog .post_delimiter,
    #top.page-id-3564 .main_color.fullsize .template-blog .post-meta-infos {
     	border: none;
     }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1373330

    thats not what i mean. the page “kategorien” ist an extra page to test. when you click there the category links then come the bloglayout, what i dont want because i set it the look like the kategorie page. but it dont work

    #1373331

    it have to look like the kategorie page. thats i set as bloglayout

    #1373351

    Hi,
    I’m still not sure what you mean, are you trying to style the category pages and you call it “kategorie” like the one linked below?
    You can not manually change their layout, the option you are talking about is to change the layout of a blog page by creating one with the elements, but it doesn’t change the archive pages like categories. Your category pages will follow the 3 options at Enfold Theme Options ▸ Blog Layout:
    Default (Business)
    Elegant
    Modern Business

    Best regards,
    Mike

    #1373368

    How can i set a archive laylout like the same with the bloglayout for all categories?

    #1373370

    not the style. i mean the layout..

    #1373374

    Hi,
    Please choose from one of the 3 options at Enfold Theme Options ▸ Blog Layout
    Or you can manually edit the archive.php file, but you would need to know advanced PHP there is not an easy way to do this.

    Best regards,
    Mike

    #1373376

    ok.

    #1373377

    Hi,
    You can also use one of these presets, try these codes in your child theme functions.php, only one at a time and then check your category page:

    //change category page layout to blog single small style

    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-small';
    return $layout;
    }

    //change category page layout to blog single big style

    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;
    }

    //change category page layout to blog grid style

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

    //change category page layout to bloglist excerpt

    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); 
    function avia_change_archive_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'bloglist-excerpt';
    return $layout;
    }

    Best regards,
    Mike

    #1373456

    i will use redirects. thats work

    #1373486

    Hi,
    That is a good idea, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

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