Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the clarification. We’ll forward this thread to our channel for further consideration.
Best regards,
IsmaelHi,
Thank you for the screenshot.
What does the notice say? It doesn’t appear to be critical based on the color coding. This may simply be a false positive, as there is no specific information about the vulnerability or error. Please try to contact your hosting provider for additional information.
Best regards,
IsmaelHi,
No problem! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelFebruary 25, 2026 at 5:56 am in reply to: Framed Hi, Box around icon box with icon on left side #1495463Hi,
You can try setting the width of the iconbox to 90% or lower. Let us know the result.
#top .iconbox { background: white; padding: 20px; border: 1px solid gray; width: 90%; }Best regards,
IsmaelHi,
Kindly edit the Color Section that contains the columns and assign it the class name “av-program-columns”. We have updated one of the pages (see private field) with the new class name and applied the following css in the Quick CSS field.
#top .av-program-columns .flex_column_table.av-equal-height-column-flextable .avia-button-wrap { position: absolute; bottom: 0; width: 100%; } #top .av-program-columns .flex_column_table.av-equal-height-column-flextable .flex_column { padding-bottom: 50px; }You can do the same for the remaining pages.
Best regards,
IsmaelFebruary 25, 2026 at 5:44 am in reply to: Portfolio filter causes loading errors in testimonials #1495460Hey dominictschupp,
Thank you for the inquiry.
We may need access to the site to properly investigate the issue. Please provide the site URL in the private field, along with the login details.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Adding this filter in the functions.php file might also help.
add_filter( 'avf_avia_builder_helper_lightbox_size', function( $size, $context, $post_id, $responsive_lightbox ) { return 'full'; }, 10, 4 );Let us know the result.
Best regards,
IsmaelHey spitsdesign,
Thank you for the inquiry.
What is the current version of the theme? Please make sure the theme is updated to version 7.1.4 and that the fonts are uploaded in zip format. You may also need to ask your hosting provider to enable the ZipArchive PHP extension. Let us know if the issue persists.
Best regards,
IsmaelFebruary 25, 2026 at 5:28 am in reply to: Header menu button match other buttons on site (rounded) #1495457Hi,
Awesome! Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelFebruary 24, 2026 at 6:14 am in reply to: Bug: PHP error when trying to edit image elements in Enfold Avia #1495408Hi,
Thank you for the update.
The avf_alb_linkpicker_memory_limit filter was added specifically for this purpose. Most sites with a small number of plugins typically work well with around 256MB of memory, although actual requirements may vary depending on site complexity and plugin usage. Most entry-level servers allow between 512MB and 1GB of memory (excluding shared hosting environments), so 512MB is often considered a safe middle-ground. The theme includes this as a safeguard for users or developers who may have created thousands of posts or taxonomies but might not be fully aware of memory limits and how they can affect data retrieval. For experienced developers like yourself, adding the filter as you have should be sufficient to help resolve the issue.
Best regards,
IsmaelHi,
Thank you for the update.
This specific condition is for images that are retrieved only using their ID but still use wp_get_attachment_image() for retrieval — such as element shortcodes. We recommend reaching out to the plugin developers regarding this issue, as we cannot reproduce it on our end. Image elements contain srcset attributes when we tested them in our installation.
Best regards,
IsmaelHey Jason Bolger,
Thank you for the inquiry.
These post meta information is used by the theme and WordPress for page configuration and layout behavior, including elements like the header, footer and sidebar. Removing it is not recommended, as it may break theme or layout functionality. In terms of performance, post meta queries are generally lightweight because they are retrieved only when required and are not normally loaded all at once during page rendering. This would only become a problem if a single post or page contained thousands of meta entries, which is not the case.
Best regards,
IsmaelFebruary 24, 2026 at 5:51 am in reply to: Not registered dependencies for Enfold css and js #1495405Hi,
Thank you for the update.
Would you mind temporarily removing the logs? Then navigate back to the back end and check the error logs again. Do you see any references to avia-layout only, or also to avia-shortcodes?
If you’re only seeing avia-shortcodes, then try to replace the hook with this code:
add_action( 'wp_enqueue_scripts', function() { if ( is_admin() ) { if ( ! wp_style_is( 'avia-layout', 'registered' ) ) { wp_register_style( 'avia-layout', false ); } if ( ! wp_style_is( 'avia-shortcodes', 'registered' ) ) { wp_register_style( 'avia-shortcodes', false ); } } }, 5 );Let us know the results.
Best regards,
IsmaelFebruary 24, 2026 at 5:43 am in reply to: Header menu button match other buttons on site (rounded) #1495403Hi,
Thank you for the inquiry.
You can add this css code to apply rounded corners to the outline and colored menu items in the header.
#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text, #top #wrap_all .header_color .av-menu-button-bordered > a .avia-menu-text { border-radius: 90px; }Please make sure to purge the cache after adding the css. Let us know the result.
Best regards,
IsmaelHey dreyerjm,
Thank you for the inquiry.
Did you add this css code?
.avia-video, .avia-iframe-wrap { clear: both; position: relative; margin-bottom: 20px; }This applies a 20px bottom margin, which creates the space below the video. Please remove the css code or override it with the following code.
.avia-video, .avia-iframe-wrap { margin-bottom: 0; }Best regards,
IsmaelHey dreyerjm,
Thank you for the inquiry.
Are you referring to the white bottom border? Please try to add the following css code to remove it.
#top .av-submenu-container { border-bottom: 0; }Best regards,
IsmaelHey dreyerjm,
Thank you for the inquiry.
How did you add the widget? The text is wrapped in an H4 heading and placed inside a code block, so it’s styled differently compared to the default footer links or widgets. You’ll need to remove the code block and replace the H4 tag with an anchor (link) tag. Please contact the plugin developers for additional assistance.
Best regards,
IsmaelHi,
Thank you for the update.
This has been the case for some time, even in older versions. You’ll need to be careful with invalid html, as it can break the layout builder. Let us know if you have more questions.
Best regards,
IsmaelHey Maltolomaeus,
Thank you for the inquiry.
What happens when you deactivate css compression or minification? The page is not scrollable because of this css code:
html.responsive, .responsive body { overflow-x: hidden; }You can temporarily add this css code to override it:
html.responsive, .responsive body { overflow-x: visible; }Let us know the result.
Best regards,
IsmaelFebruary 24, 2026 at 5:19 am in reply to: Framed Hi, Box around icon box with icon on left side #1495397Hi,
Thank you for the update.
The theme has its own Advanced Layout Builder (ALB), so you can create any type of layout, content or design you need. Also, please note that all demos are available for import once you purchase a single license. Please refer to the documentation for more information.
— https://kriesi.at/documentation/enfold/intro-to-layout-builder/
Best regards,
IsmaelHi,
We couldn’t find a “programcolumn” column anywhere in the elements, so we used the default element ID instead. Please remove the previous css code and use the following code instead.
#top .flex_column_table.av-1bilfvb-acaaf518a56045ca4bfe6b9c9a40283f.sc-av_one_fourth.av-equal-height-column-flextable .avia-button-wrap { position: absolute; bottom: 0; width: 100%; } #top .flex_column_table.av-1bilfvb-acaaf518a56045ca4bfe6b9c9a40283f.sc-av_one_fourth.av-equal-height-column-flextable .flex_column { padding-bottom: 50px; }Best regards,
IsmaelFebruary 23, 2026 at 6:39 am in reply to: Display problem between a computer and a smartphone #1495360Hi,
Please let us know once the site is live so we can properly investigate the issue. Provide the login details in the private field, including SFTP access.
Best regards,
IsmaelFebruary 23, 2026 at 6:35 am in reply to: Not registered dependencies for Enfold css and js #1495359Hi,
Thank you for opening this thread.
We adjusted the code in the functions.php file a bit,
add_action( 'wp_enqueue_scripts', function() { if ( is_admin() && ! wp_style_is( 'avia-layout', 'registered' ) ) { wp_register_style( 'avia-layout', false ); } }, 5 );Let us know if the issue persists.
Best regards,
IsmaelFebruary 23, 2026 at 6:34 am in reply to: Multiple errors on pages and posts (analysis included) #1495357Hi,
We adjusted the code a bit.
add_action( 'wp_enqueue_scripts', function() { if ( is_admin() && ! wp_style_is( 'avia-layout', 'registered' ) ) { wp_register_style( 'avia-layout', false ); } }, 5 );Please let us now how it goes.
@elenapoliti: Please continue here: https://kriesi.at/support/topic/not-registered-dependencies-for-enfold-css-and-js/
Best regards,
IsmaelHi,
Thank you for the update.
Would you mind providing a screenshot of the report, or provide the login details so we can check? You can use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
Thank you for the update.
You can edit this in the Appearance > Menus panel. Make sure to select the “View All” tab to see all pages. We have replaced the menu item “store-2” with the actual “store” page. Please make sure to purge the cache before testing.
Best regards,
IsmaelHey Sabi,
Thank you for the inquiry.
Unfortunately, you can only import one demo at a time. Importing another demo will override the previous one, but the new pages should be added and retained. If you’d like to use elements from another demo, you can set up a temporary site, import the specific demo there, and then transfer the elements you like to your development site. Let us know if you need more information.
Best regards,
Ismael -
AuthorPosts



