Forum Replies Created
-
AuthorPosts
-
September 7, 2021 at 11:55 am in reply to: Tweak: Change CSS load order so Post CSS is first #1319956
Hey Thomas,
Thanks for the ideas.
The decision to load the post css files late are that the CSS rules set in an element and placed in this file must override default CSS rules and we tried to use weakest selectors wherever possible to allow custom CSS rules (if necessary).
If you use filter ‘avf_post_css_create_file’ (return false) the CSS rules are placed inline in style tags right before the elements instead of the post css file.
Question is, what are “critical” CSS rules. We could consider to add those to a second post css file that is loaded first (or add them inline in header).
Best regards,
GünterSeptember 2, 2021 at 12:32 pm in reply to: Pagination not working on avia_product_slider in search.php #1319492Hi,
FYI: the fix was added to next release 4.8.6.3.
Have a great day and enjoy the theme.
Best regards,
GünterHi,
Select Your Editor -> Use Classic Editor
Disable Block Editor For Selected Post Types:You can only disable block editor for post tyes, means with Strg + Click select the post types you never want to use block editor.
e.g. if you select page and posts these will always open in classic editor (only “Edit” is visible),
portfolio will have “Classic Editor” and “Block Editor” links below title on “Portfolio Items” page.Best regards,
GünterHey Guenter,
add_theme_support( 'avia_gutenberg_post_type_support' );
– adds an additional selectbox to theme option “Editor”
– you can select for each page/post/.. which editor you want to use to editBest regards,
GünterHi,
documented in place
in the file where we add the filter we add a comment with the parameters.
Best regards,
GünterHi,
Can you please add the following code:
.avia-related-tooltip{ position: absolute; z-index: 9999999; padding: 0; width: 200px; border-radius: 2px; box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.1); border-width: 1px; border-style: solid; padding: 15px; margin-top: -10px; } .avia-related-tooltip .avia-arrow-wrap{ top: auto; bottom: 0; position: absolute; left: 50% } .avia-related-tooltip .avia-arrow-wrap .avia-arrow{ border-top: none; border-left: none; top: -4px; }
at the bottom of enfold\css\shortcodes.css (will be added there in next update)
or until next update to the Quick CSS field.
FYI: Code is moved from enfold\config-templatebuilder\avia-shortcodes\blog\blog.css which is not loaded when blog is disabled.
Best regards,
GünterHi,
Please read this reply: https://kriesi.at/support/topic/background-image-is-not-displayed-anymore-after-update-to-enfold-4-8-6-1/#post-1317645
Maybe it helps to fix your problem.
And please update to 4.8.6.2 (latest release)Best regards,
GünterHi,
Via a filter in child theme – currently not.
You can update the core file enfold\footer.php in line 295 you find:
echo av_icon_string( 'scrolltop' );
Replace this with:
echo av_icon_string( 'scrolltop', false );
You need to update this whenever you update the theme.
If we might add a filter in future version it will be documented in place.
Best regards,
GünterAugust 20, 2021 at 4:31 pm in reply to: Background image is not displayed anymore after update to Enfold 4.8.6.1 #1317645Hi,
Sorry for the problems.
When loading the page I get following error for
GET https://your_site_name/wp-content/uploads/avia_posts_css/post-5.css?ver=ver-1629459115 ---- Status403 Forbidden VersionHTTP/2 Übertragen894 B (752 B Größe) Referrer Policystrict-origin-when-cross-origin
This file holds the CSS to display the background images and other styling needed for this page (this was added starting with 4.8.4).
One user could solve it by enable query parameters (which he had blocked before) needed to invalidate browser cached post-5.css file when page is updated (?ver=ver-1629459115).
Alternate way (but not recommended, only if your server configuration makes it absolutly necessary) is to disable file generation by adding this to your functions.php file:
For testing and until you find a solution with your hoster it is OK.
Best regards,
GünterAugust 19, 2021 at 1:30 pm in reply to: Disappearing WebP Image as ColorSection Background Image? #1317487August 19, 2021 at 11:17 am in reply to: Disappearing WebP Image as ColorSection Background Image? #1317470Hi,
Did you read https://make.wordpress.org/core/2021/06/07/wordpress-5-8-adds-webp-support/ chapter “Using WebP images”
Seems not all browsers support webp yet.
There is a polyfill to load: https://github.com/chase-moskal/webp-hero
Best regards,
GünterAugust 19, 2021 at 11:08 am in reply to: 4.8.2 onwards Woocommerce main shop image is being lazy loaded #1317468Hi,
Thank you for the feedback.
The pastebin version is already merged for the next update.
The code as written in #1316178 is missing the priority and number of parameters – should be:
add_filter( 'wp_get_attachment_image_attributes', function( $attr, $attachment, $size ) { if ( $size === 'shop_single' ) { unset( $attr['loading'] ); } return $attr; }, 10, 3 );
Glad that this fixes the problem.
Best regards,
GünterAugust 18, 2021 at 12:14 pm in reply to: Filter the color_sets array for custom color sections #1317323Hi,
Glad we can help you.
Enjoy the theme and have a great day. Feel free to come back when you need further assistance.
Best regards,
GünterAugust 18, 2021 at 11:07 am in reply to: Request: Please Create Short Videos of New Features for Every Enfold Release #1317319Hey S.,
Sorry for the late reply.
Thank you for these ideas and the feedback – we started discussion about it already.
We certainly will pick up some of it in near future to make it easier for users.
Have a great day.
Best regards,
GünterHey Guenter,
Danke, dass Du meinen Fehler auf Github bemerkt hast – schon korrigiert.
Footer and Socket part of #main
Da .all_colors Teil von #main ist sind die Auswirkungen nicht wirklich leicht abschätzbar.
Was ich mir eher vorstellen könnte (hab aber noch nicht genauer angeschaut) wäre die beiden Teile noch in ein eigenes div zu geben.
Damit sollte man diesen “Curtain” Effekt auch machen können (könnte ich mir auch als Theme Option vorstellen).
Best regards,
GünterAugust 18, 2021 at 10:39 am in reply to: Disappearing WebP Image as ColorSection Background Image? #1317315August 18, 2021 at 9:27 am in reply to: Filter the color_sets array for custom color sections #1317307Hi,
We added the filter ‘avf_color_sets’ as you suggested for the next release.
Best regards,
GünterAugust 18, 2021 at 9:10 am in reply to: Disappearing WebP Image as ColorSection Background Image? #1317301Hi,
Thank you for using Enfold.
As suggested by @Guenni007 we added svg and webp to filter list.
Please replace
enfold\config-templatebuilder\avia-template-builder\php\class-html-helper.php
with the content of
– Do not forget to make a backup of the original file for a fallback
– Clear server and browser cacheIf you need help please let us know and we can do it for you.
Best regards,
GünterHi,
I updated enfold options for footer (and also metabox in page sidebar):
Select a page to replace footer and keep socket
Select a page to replace both footer and socketFooter and Socket part of #main
There are rules e.g. for widget title:
#top #wrap_all .all_colors h3{ text-transform: none; }
This also effects your sample page (see “Adresse” is upper case).
And class all_colors is in #main div.Best regards,
GünterHi,
Thanks a lot – already added to core.
I asked Yigit to keep you on the list to be informed.Have a great day.
Best regards,
GünterAugust 12, 2021 at 4:35 pm in reply to: Problems with cookiebar and avia_gdpr_permanent_hide_message_bar #1316472Hi,
Thank you for using Enfold and you found the solution.
Enjoy the theme and have a great day. Feel free to come back when you need further assistance.
Best regards,
GünterAugust 12, 2021 at 4:32 pm in reply to: error message in backend after theme update to ver. 4.8.4 or 4.8.5 or 4.8.6 #1316471Hi,
Thank you for the feedback – and glad you found the problem.
Enjoy the theme and have a great day. Feel free to come back when you need further assistance.
I will close the topic for now.Best regards,
GünterAugust 12, 2021 at 4:29 pm in reply to: full width color sections not full width after update #1316469Hi,
Thank you for using Enfold – and glad you solved the problem.
Enjoy the theme and have a great day.
Best regards,
GünterHi,
Glad that it works now.
Please have a look here: https://kriesi.at/support/topic/post-css-and-caching-issue/#post-1316059
Could the query string cause the problems in your setup ?
Best regards,
GünterAugust 11, 2021 at 1:26 pm in reply to: Masonry Gallery Preloader Spining Wheel in Page Preview Mode. #1316265Hi Phet,
I could locate the problem.
CSS for .avia_loading_icon, …. was located in enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.css, this file might not be loaded when portfolios are not used.
I moved the stylings to enfold\css\shortcodes.css and kept the default background:
background: rgba(0,0,0,0.7);
Will be in next update 4.8.6.2
Best regards,
GünterAugust 10, 2021 at 2:51 pm in reply to: Earliest version of PHP to be able to use latest Enfold? #1316082Hey mterrianrode,
Thank you for using Enfold.
Actually Enfold should be able to deal with 7.0 or higher – this message is not php related.
Can you try to increase your memory limit – see https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/
Best regards,
Günter -
AuthorPosts