Forum Replies Created
-
AuthorPosts
-
November 18, 2024 at 9:47 am in reply to: 441 / 5.000 Looking for a recommendation for map software #1471545
Hi,
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!
IsmaelHey Munford,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Anne,
Thank you for the inquiry.
You may need to update the theme to the latest version to remove the notification. Please note that this warning is not critical and will not affect the site in any way. If you prefer, you can hide it by setting WP_DEBUG_DISPLAY to false in your wp-config.php file.
// https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display
Best regards,
IsmaelHi,
Thank you for the info.
In the screenshot, we noticed that you’re toggling the options in the Layer Slider metabox. What happens when you select the Blank – No Header, No Footer template in the Page > Template settings?
// https://wordpress.com/support/templates/
Best regards,
IsmaelHi,
Thank you for the info.
We may need to adjust the default size of the thumbnails. Please add this code in the functions. file:
function avf_customization_modify_thumb_size( $size ) { $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); return $size; } add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
Then use the this plugin to regenerate the thumbnails.
// https://wordpress.org/plugins/regenerate-thumbnails/
Please make sure to create a site backup before proceeding.
Best regards,
IsmaelNovember 15, 2024 at 9:13 am in reply to: Search form AJAX results contains hidden products #1471377Hi,
Great! Glad to know that you managed to fix it. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelNovember 15, 2024 at 8:46 am in reply to: Search form AJAX results contains hidden products #1471373Hi,
We adjusted the filter a bit. Please try it again and let us know of the result.
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
Looks like the whole #intro section gets highlighted when you try to slide the arrows. Please try adding this css code:
#intro { user-select: none !important; }
Make sure to purge the cache or remove the browser history before checking.
Best regards,
IsmaelHey mhannondesign,
Thank you for the inquiry.
We don’t see an additional menu in the header. Did you figure out the issue? If not, please provide a screenshot of the issue using platforms like Savvyify, Imgur or Dropbox.
Best regards,
IsmaelHi,
Unfortunately, we are not yet sure what is causing the issue, but it seems to be related to an entry in the browser’s session storage. If possible, please provide the FTP details in the private field. We’ll get back to you as soon as we find anything.
Best regards,
IsmaelNovember 15, 2024 at 8:30 am in reply to: Built in privacy feature in theme options not working correctly. #1471368Hi,
Thank you for following up.
Are there any other fields or settings that you can’t access aside from the Enable Cookie Consent Message settings? Since you’ve already toggled it on Firefox, you can just leave it as is for now and get on with the other settings.
Best regards,
IsmaelHi,
UPDATE: We found an invalid code in the Quick CSS field and corrected it. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
Where did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
IsmaelNovember 15, 2024 at 7:23 am in reply to: Change Portfolio item Font color depending on category #1471365Hey Tilman,
Thank you for the inquiry.
You can adjust the style of the titles in the second magazine element using this csscode:
#top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title a, #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title { color: blue; }
The class name “av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf” is a unique identifier automatically generated by the theme for this specific magazine element. You can also apply your own custom css class name in the Advanced > Developer Settings panel.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHey Illingco,
Thank you for the inquiry.
Would you mind providing a screenshot of the area where you need this text? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHey bemodesign,
Thank you for the inquiry.
There is a custom class name, “a-spacing-mini,” that reduces the space between the list items. How did you add this? You can try this css code to override the default style:
ul.a-unordered-list.a-vertical.a-spacing-mini li { margin-bottom: 20px; }
Best regards,
IsmaelNovember 15, 2024 at 7:11 am in reply to: Lightbox: disable click through other images on page #1471362Hey bb,
Thank you for the inquiry.
Try editing the Icon element and apply a Custom CSS Class (e.g., av-popup-no-nav) in the Advanced > Developer Settings toggle. Then, add this code to the functions.php file:
function ava_popup_init() { ?> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({ type: 'image', midClick: true, // Allow opening popup on middle mouse click navigation: { next: false, // Disable next arrow prev: false // Disable prev arrow } }); }); </script> <?php } add_action('wp_head', 'ava_popup_init');
Best regards,
IsmaelHi,
Great! Glad to know that you managed to solve the issue. Please feel free to open another thread if you have more questions about the theme.
Have a nice day!
Best regards,
IsmaelHey langanger,
Thank you for the inquiry.
You can change the background color of the top header by adjusting the value of the Enfold > General Styling > Logo Area > Alternate Background Color field. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
Ismael -
AuthorPosts