Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
We can’t reproduce the issue on the home page. Is this happening on a different page? Please provide the link in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
You can try this css code to decrease the space between the rows:
.avia-icongrid .av-icon-cell-item .avia-icongrid-flipback { padding: 10px 3em; } .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front .avia-icongrid-inner, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback .avia-icongrid-inner { padding: 10px 3em; }
Best regards,
IsmaelHi,
Thank you for the update.
We added the following css code to disable the fade-in effect of the masonry items and temporarily disabled the Performance > File Compression settings.
#top .av-masonry-entry { opacity: 1; visibility: visible; }
Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHey!
Thank you for the inquiry.
We were not able to edit the settings because the account above is not an admin. This should work for the first image in the portfolio, but it might slightly distort the image:
.avia-image-container.av-m3m81k8l-37e2592474b1f3aa9f01e6b56eac1db5 img.avia_image { max-height: 600px; }
If you want to apply this to specific images, try adding a Custom CSS Class name (e.g., av-limit-image-height) in Advanced > Developer Settings, then replace the css code with this:
.av-limit-image-height img.avia_image { max-height: 600px; }
For more info about css class names, please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Regards,
IsmaelHi!
Great! Glad to know that the suggestions worked. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Regards,
IsmaelHey mandystohry1,
Thank you for the inquiry.
1.) You can add this css code to change the color of the submenu items on hover:
#top .av-subnav-menu li a:hover { color: red; }
2.) And to highlight the active item, please add this script in the functions.php file:
function ava_custom_script() { ?> <script> (function ($) { $(document).ready(function () { var currentUrl = window.location.href; $('.av-subnav-menu .menu-item a').each(function () { if (this.href === currentUrl) { $(this).parent().addClass('active'); } }); }); }(jQuery)); </script> <?php } add_action('wp_footer', 'ava_custom_script', 99);
Then add this css code:
#top .av-subnav-menu li.active a { color: blue; }
Best regards,
IsmaelNovember 25, 2024 at 5:21 am in reply to: Upgrade WordPress 6.7 – Problems with the LayerSlider #1472102Hi,
Thank you for the info.
The issue occurred because of this css rule:
#top .avia-layerslider .ls-wp-container .ls-slide-backgrounds * { max-width: 100%; }
We removed it from the Quick CSS field.
Best regards,
IsmaelHi,
We edited the css in the Appearance > Customize > Extra CSS panel and adjusted the padding as requested. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
We updated the functions.php file and added the modified version of the script. The tab section should now resize correctly when the details tabs are toggled.
function ava_custom_script() { ?> <script> (function ($) { $(document).ready(function () { $('details').on('toggle', function () { if (this.open) { var tabId = $(this).closest('.av-layout-tab').attr('id'); if (tabId) { var targetToggle = $('[aria-controls="' + tabId + '"]'); if (targetToggle.length) { setTimeout(function () { targetToggle.trigger('click'); }, 1000); } } } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script', 9999);
Best regards,
IsmaelHi,
Great! Glad to know that you’ve found a working solution. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You have to add the code in the child theme’s functions.php file. If you haven’t installed a child theme yet, please check the documentation below.
// https://kriesi.at/documentation/enfold/child-theme/
Best regards,
IsmaelNovember 25, 2024 at 4:49 am in reply to: Allgemeines “Media Queries Sylesheet” für ENFOLD verfügbar? #1472097Hi,
Yes, you can use the avf_responsive_media_sizes filter to adjust the breakpoints, but keep in mind that it will be applied globally and may affect various styling options across the site.
function avf_responsive_media_sizes_mod( $sizes ) { $sizes = array( 'av-desktop' => array( 1024, 0 ), // Desktop view: Min width 1024px 'av-medium' => array( 769, 1023 ), // Medium view: 769px to 1023px 'av-small' => array( 481, 768 ), // Small view: 481px to 768px 'av-mini' => array( 0, 480 ) // Mini view: 0px to 480px ); return $sizes; } add_filter( 'avf_responsive_media_sizes', 'avf_responsive_media_sizes_mod' );
Best regards,
IsmaelHey luleloki,
Thank you for the inquiry.
What do you mean by “iFrame and Lightbox for different views”? If you simply need to display an image inside a lightbox, you can link the image, and the theme will automatically configure it to open within a lightbox container.
Best regards,
IsmaelHey entica,
Thank you for the inquiry.
You cannot assign a custom layout globally to a single custom post type. You must edit each post individually, manually add the Custom Layout element, and select the desired template. Unfortunately, there is no built-in option to assign it globally.
It might be possible to achieve this by editing the template file and adding the shortcode for the Custom Layout element directly but we cannot guarantee that this will work as the element is designed to be used specifically within the builder.
echo do_shortcode("[av_custom_layout link='page' av_uid='' sc_version='1.0']");
Best regards,
IsmaelNovember 25, 2024 at 4:05 am in reply to: Dia slideshow element: changing h-tag, overlay and location/font size title #1472094Hi,
Thank you for the inquiry.
The caption titles look white when we checked. To center-align the container, please add this css code:
.avia-slideshow.av-desktop-hide.av-medium-hide .avia-caption { bottom: 31%; left: 50%; transform: translateX(-50%); }
Best regards,
IsmaelNovember 25, 2024 at 3:52 am in reply to: wp_targeted_link_rel ist seit Version 6.7.0 veraltet und es ist keine Alternativ #1472093Hi,
Thank you for the inquiry.
The issue with the wp_targeted_link_rel_callback function will be resolved in the next patch. In the meantime, please keep the WP Debugging plugin enabled.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Where can we check these images? Please provide the link to the page in question so that we can inspect the images. Have you tried applying a maximum height to the image?
@media only screen and (max-width: 1366px) { /* Add your Mobile Styles here */ .image { max-height: 700px; } }
Adjust the “.image” selector accordingly.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelNovember 18, 2024 at 9:47 am in reply to: 441 / 5.000 Looking for a recommendation for map software #1471545Hi,
If you don’t accept them in the cookie banner, the map won’t be displayed.
Have you tried setting the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings to the first or second option? This will allow external services, including the map, to load even without accepting the cookie options.
Best regards,
IsmaelHi!
Please try to add this script in the functions.php file:
function ava_custom_script() { ?> <script> (function ($) { $(document).ready(function () { $('details[open]').click(function () { var tabId = $(this).closest('.av-layout-tab').attr('id'); console.log(tabId) if (tabId) { var targetToggle = $('[aria-controls="' + tabId + '"]'); console.log(targetToggle) if (targetToggle.length) { setTimeout(function () { targetToggle.trigger('click'); }, 1000); } } }); }); }(jQuery)); </script> <?php } add_action('wp_footer', 'ava_custom_script', 99);
Thank you for your patience.
Regards,
IsmaelNovember 18, 2024 at 9:38 am in reply to: 441 / 5.000 Looking for a recommendation for map software #1471542Hi,
Thank you for the update.
Unfortunately, this is the only option included in the theme aside from Google Maps. You may need to look for another plugin or map library if OpenStreetMap doesn’t meet your needs. Why can’t you use Google Maps?
Best regards,
IsmaelNovember 18, 2024 at 9:33 am in reply to: Upgrade WordPress 6.7 – Problems with the LayerSlider #1471540Hey Beat,
Thank you for the inquiry.
We may need to login to the site in order to properly check the issue. Please provide the login details in the private field. In the meantime, try to toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know of the result.
Best regards,
IsmaelNovember 18, 2024 at 8:52 am in reply to: Burger menu without function/after three clicks without function #1471533Hi,
UPDATE: Looks like the Autoptimize plugin doesn’t have the “delay JavaScript execution” option, but you can try disabling the compression options of the cache plugin and use the Autoptimize settings instead. Let us know of the result.
Best regards,
IsmaelNovember 18, 2024 at 8:49 am in reply to: Burger menu without function/after three clicks without function #1471532Hi,
Sorry for the delay. We are still not sure what is causing this issue. Have you tried using a different plugin for the “delay JavaScript execution” feature, such as Autoptimize? You can also compress the scripts and stylesheets with this plugin.
Best regards,
IsmaelHey ravesteynfonds,
Thank you for the inquiry.
Please try to add this filter in the functions.php file to exclude the acf-field-group post type from the blog grid:
function avia_post_slide_query_mod($query, $params) { foreach($query['post_type'] as $key => $value) { if( $value == 'acf-field-group' ) { unset($query['post_type'][$key]); } } return $query; } add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
Best regards,
IsmaelNovember 18, 2024 at 8:34 am in reply to: Woocommcer / Enfold / Home page freezes after adding to cart #1471530Hi,
Thank you for the inquiry.
The page can’t be scrolled due to this css rule, which is applied after adding an item to the cart:
body.xoo-wsc-cart-active, html.xoo-wsc-cart-active { overflow: hidden!important; }
You can override it with the following css code:
body.xoo-wsc-cart-active, html.xoo-wsc-cart-active { overflow: auto!important; }
Best regards,
IsmaelNovember 18, 2024 at 8:24 am in reply to: 441 / 5.000 Looking for a recommendation for map software #1471529Hi,
Please check this documentation for more info about the OpenStreetMap feature: https://kriesi.at/documentation/enfold/openstreetmaps-leaflet-maps/
Best regards,
IsmaelHey desquid66,
Thank you for the inquiry.
Is there any plugins that conflict with Enfold?
Yess there are plugins that could potentially cause conflicts not only with the theme but with any theme. However, you should still be able to use SEO plugins like Yoast or RankMath without any issues with the Enfold theme. Let us know if you encounter any issues.
Best regards,
IsmaelHey icarogioiosi,
Thank you for the inquiry.
The size of the logo will depend on the uploaded image, but we can adjust it with css. Unfortunately, there are no available options to adjust the width of the menu or the line spacing between the menu items, but again, we can adjust these with css.
Example:
.html_header_sidebar #top #header { width: 400px; } .html_header_left #main { margin-left: 400px; } .html_header_sidebar #header .av-main-nav > li > a { line-height: 2em; height: auto; padding: 30px 3px; margin: 0 auto; }
Best regards,
IsmaelHi!
Thank you for the info.
The same notification still occurs after updating the theme files:
“”nfo – Session Storage: Browser memory limit reached or blocked by browser. Your Browser does not offer enough session storage to save more steps for the undo/redo history.” “Failed to execute ‘setItem’ on ‘Storage’: Setting the value of ‘aviaenfoldchild1043753’ exceeded the quota.”
We are still unable to update the page. When we copy the content of the Journey page from the live site to a local installation, the same error occurs, but we were able to update the page. This is with the default 6.0.6 version, without the modifications mentioned above. We have not encountered this issue before. We’ll give you an update as soon as we find anything.
Cheers!
Ismael -
AuthorPosts