-
AuthorPosts
-
May 31, 2024 at 9:48 am #1447166
Good morning!
I have several problems on sii-talents.de – I hope you can help.1) I had to uninstall the CAching plugins because they were preventing the site from updating. Which plugin do you recommend so that it still works?
2) Blog display (this is a problem on all websites): My goal is to have a custom blog layout. Like here: https://sii-talents.de/aktuell/
But:
If it is set in the Enfold theme options that the blog should be displayed on a specific page, then it is not possible to have “a grid layout” for the blog layout when clicking on a category. The blog articles then appear completely below each other. That is stupid.
So I play a trick and don’t select a page as a blog in the Enfold theme options, simply design a blog page that is not set as such and select the “grid layout”. But that’s not good for search engines! So how can my goal be achieved?3) Concerns the menu in the socket: After clicking on a menu item, the font turns dark gray and then the visitor does not see the menu link – the background is also dark gray. But: this is not done in the layout settings. The font is set to white in all cases.
4) The main color is set for the font color for links, text initials and other elements. Other elements are button colors, e.g. in slideshows. How can I separate this without having to set the button color separately on each individual page?
best regards
Susanne- This topic was modified 5 months, 1 week ago by tiefenschaerfe.
June 1, 2024 at 7:54 pm #1447367Hey Susanne,
1) do you mean the caching plugins were preventing your site from knowing that a update was available for the theme? I have not heard of this issue before, but you could try the WP Fastest Cache plugin, or when Envato (Theme Forest) notify you that an update is available you could disable your plugin and then check for the update.
2) In my demo the “blog” page is selected as the “blog”
and that page uses ALB elements to create the blog
please see our demo here
3) on your site it looks like you have custom css added causing the dark color, perhaps it is from a plugin:a:visited { color: #333333; }
4) if you want to override the color for all buttons try this:#top .main_color .avia-color-theme-color-highlight, #top .main_color .avia-color-theme-color { background-color: red; border-color: red; }
adjust to suit
Best regards,
MikeJune 4, 2024 at 10:15 am #1447747Hello Mike,
thanks for your reply and sorry for only responding now.1) Yes, we had previously used the WP Fastest Cache plugin. I’ll try it out again in a few days.
2) Blog settings: When I do it this way, exactly what we don’t want happens. If you click on a blog category, all articles with full text appear one below the other. See in your demo: https://kriesi.at/themes/enfold-2017/category/personal/
This is not how it should be, but like this: https://sii-talents.de/category/buecher/
3) I don’t know which plugin this should be. Can I simply delete it in the custom CSS?
to 4) If I do that, ALL buttons are in the selected colors. But only one button should have the “color 1” or “theme subtle color”, which I want to select independently of the “main color > font color for links, text initials and other elements”.
Where is the theme sub-style color generally set? I have never seen this anywhere in all my years of using Enfold.Best regards,
SusanneJune 4, 2024 at 10:40 am #1447761for 2)
btw: that is not a blog setting – blog is context index
these are archive pages.put this to your child-theme functions.php:
add_filter("avf_post_slider_args", function($atts, $context) { if( $context == "archive" ) { $atts['type'] = 'grid'; $atts['columns'] = 4; $atts['preview_mode'] = 'custom'; $atts['image_size'] = 'magazine'; // if you want to have different source Images for that setting } return $atts; }, 10, 2);
June 4, 2024 at 12:28 pm #1447834Hi,
Guenni007 is correct for #2, the “blog” option is not for category pages, if you want category/archive pages to be a grid then 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 = 'blog-grid'; return $layout; }
You can not have a custom layout for a category / archive page with a hero image at the top like https://sii-talents.de/aktuell/
To add the hero image to the top of the category pages try this solutionBest regards,
MikeJune 5, 2024 at 8:44 am #1448447Okay, danke für Eure Antworten. Ich werde das alles ausprobieren.
Viele Grüße
SusanneJune 5, 2024 at 12:00 pm #1448463Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘several problems …’ is closed to new replies.