-
AuthorPosts
-
November 19, 2022 at 5:18 pm #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/November 19, 2022 at 6:03 pm #1373219November 20, 2022 at 9:26 pm #1373306Hi,
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,
MikeNovember 21, 2022 at 5:32 am #1373330thats 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
November 21, 2022 at 5:35 am #1373331it have to look like the kategorie page. thats i set as bloglayout
November 21, 2022 at 12:45 pm #1373351Hi,
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 BusinessBest regards,
MikeNovember 21, 2022 at 2:00 pm #1373368How can i set a archive laylout like the same with the bloglayout for all categories?
November 21, 2022 at 2:00 pm #1373370not the style. i mean the layout..
November 21, 2022 at 2:27 pm #1373374Hi,
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,
MikeNovember 21, 2022 at 2:35 pm #1373376ok.
November 21, 2022 at 2:37 pm #1373377Hi,
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,
MikeNovember 22, 2022 at 7:04 am #1373456i will use redirects. thats work
November 22, 2022 at 12:43 pm #1373486 -
AuthorPosts
- You must be logged in to reply to this topic.