-
AuthorSearch Results
-
February 25, 2026 at 7:17 pm #1495498
In reply to: odd behavior when editing contact form
Hi Rikard,
After checking the website and Enfold (v. 7.1.3 & 7.1.4), it looks like the ‘Classic Editor’ plugin was interfering with the form?
The site (WP 6.9.1) had this plugin still running for some reason.
It seems the problem was solved by turning the plugin off.Rob
February 25, 2026 at 10:15 am #1495482In reply to: add icon font not working
Hey Ismael,
Thanks for the feedback.
Yes I’m using the latest version of Enfold (7.1.4).
In private content you can find the system info.The icons used to work in the past…
February 25, 2026 at 10:05 am #1495481Hi,
Glad that you found a solution, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.Best regards,
MikeFebruary 25, 2026 at 9:14 am #1495475Hi,
Thanks for that. I uploaded a fresh copy of the theme and activate that. Your site responded with a critical error, which unfortunately doesn’t make much sense. I would have expected the site to look and behave the same, since both versions of Enfold should theoretically be identical. Did you make any types of changes to the core theme files? Please share server error logs with us, so that we can have a closer look at them.
Best regards,
Rikard-
This reply was modified 2 months ago by
Rikard.
February 25, 2026 at 8:16 am #1495474In reply to: Formatting not showing up
Hi,
Did you try to clear all caches that might be applying to the site? Did you try to toggle the file compression options under Enfold->Performance? You could also try to activate the option to delete old CSS and JS files on the same page.
Best regards,
RikardFebruary 25, 2026 at 6:21 am #1495471In reply to: Icons next to correct text
Hi,
Thank you for the update.
Yes, you can change the page ID or apply a custom css class name to the elements. Please check the documentation for additional info.
— https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelFebruary 24, 2026 at 6:07 pm #1495445Topic: Lightbox Pdf not working – shows up black multiple solutios
in forum Enfolddreyerjm
ParticipantHi, I ‘m trying to have my pdfs load in a lightbox. I have tried 2 methods – the first being adding this code which didnt work. The second thing I treid (which I prefer) is the adding the plugin ARI Fancy Lightbox. But the same things happens and it is just black and the pdf wont load.
February 24, 2026 at 5:15 pm #1495441In reply to: Cropped images in Lightbox
i guess you only want to influence the lightbox images source. And because Enfold uses on default the large image. This does not always uses the original aspect ratio.
I would not influence the thumbnail sizes of the gallery. Only the lightbox source image.
If you are usiing the gallery element try:function custom_alb_lightbox_image_size( $size, $context ){ if( $context == ('av_gallery' || 'avia_masonry') ){ return 'original'; } return $size; } add_filter( 'avf_alb_lightbox_image_size', 'custom_alb_lightbox_image_size', 10, 2 );February 24, 2026 at 4:34 pm #1495436yes – enter your red logo to the enfold logo input field.
on media library determine the path to your : ETH_galabau_Logo
guess it looks like this one :

insert that url to the is_tree(265) url:
place this snippet to your child-theme functions.php:function is_tree($pid) { global $post; if ( is_page() ) { if ( is_page($pid) ) { return true; } $ancestors = get_post_ancestors($post->ID); if ( in_array($pid, $ancestors) ) { return true; } } return false; } function av_change_logo($logo){ if (is_tree(265)) { $logo = "/wp-content/uploads/…/…/your_green_galabau_Logo.png";} return $logo; } add_filter('avf_logo','av_change_logo');the first function (function is_tree($pid) ) is for having all subpages to your galabau page (which has the id: 265.
from this moment – you do not need to add a new page-id to your page_array. If a page is a child of that 265 it will have that green logo.February 24, 2026 at 3:18 pm #1495429Topic: Cropped images in Lightbox
in forum EnfoldRENZCOM
ParticipantDear Enfold Theme,
We are currently implementing a gallery page where a lightbox opens in a gallery with additional data and the image. Unfortunately, the image is only displayed partially. We are using the following function for this:$grid = new avia_post_grid( array( 'linking' => ‘’, ‘columns’ => ‘3’, ‘contents’ => ‘title’, ‘sort’ => ‘no’, 'paginate' => ‘yes’, ‘set_breadcrumb’ => false, ‘preview_mode’ => ‘auto’, ‘image_size’ => ‘full’ )); $grid->use_global_query(); echo $grid->html( ‘’ );Highlighted in bold that the full images should actually be used. However, this does not seem to work.
February 24, 2026 at 3:14 pm #1495428in your case i would create a is_tree conditional and then change the logo for all subpages by that conditional
function is_tree($pid) { global $post; if ( is_page() ) { if ( is_page($pid) ) { return true; } $ancestors = get_post_ancestors($post->ID); if ( in_array($pid, $ancestors) ) { return true; } } return false; } function av_change_logo($logo){ if (is_tree(265)) { $logo = "[logo url]";} elseif (is_tree(509)) { $logo = "[logo url]";} elseif (is_tree(530)) { $logo = "[logo url]";} return $logo; } add_filter('avf_logo','av_change_logo');your Landschaftbau is page ID: 265
by the way enfold has now a class on subpages for that on body tag: parent-pageid-265 – but this will only work for the next level of direct children.
then you can have that conditional:if ( is_page(265) || $post->post_parent == 265 ) { // ... }But: the is_tree seems to be more elegant.
February 24, 2026 at 2:33 pm #1495426Hey Rajender,
What exactly are you trying to do? If you are looking to get updates in the backend, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
RikardFebruary 24, 2026 at 2:14 pm #1495424Rajender Kumar
GuestHi have bought the Enfold theme 7-8 month ago while developing the site
now i am update the license code it not workingcan u check so that i can buy clear ny another purchase
February 24, 2026 at 1:48 pm #1495423Topic: Bulk Rename of URLs
in forum Pre Sale QuestionsTim Payne
GuestHi Have a website that I’m migrating from DIVI. I have moved all the pages to Enfold but can’t find a way to bulk rename all the links to the new domain. Could you please advise?
February 24, 2026 at 12:14 pm #1495420Hey Jorge,
The update to 7.1.4 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/Best regards,
RikardFebruary 24, 2026 at 11:19 am #1495419In reply to: Vulnerability Alert
This reply has been marked as private.February 24, 2026 at 11:03 am #1495418In reply to: [Urgent] Websites not scrolling
is it a horizontal scrolling page? thats extraordinary.
Nearly all enfold demos could have even that rule:html.responsive, .responsive body { overflow-x: hidden !important; }the scroll in y-direction should work as expected.
February 24, 2026 at 11:01 am #1495417In reply to: Enfold Performance
Hi Ismael,
Perhaps you misread my post, and also the hidden content (please read it and get back to me – I am trying to contribute).
Enfold is writing *multiple* empty postmeta for *every* post – even when the value is empty. The routine simply needs to be updated to check whether the $_POST[] value is empty rather than just present (and empty) before saving.
On a large site the wp_postmeta table is a big bottleneck, even with caching etc. My wp_postmeta table has over 6m entries and is the biggest table in my instance – adding unnecessary entries to it does impact performance, as the table (and indexes) need to be queried to find those records…
Cheers,
JasonFebruary 24, 2026 at 10:15 am #1495416In reply to: Not registered dependencies for Enfold css and js
I did it. Actually I tried the same thing in other websites. At a moment I thought that the problem was caused by some plugin, but I deactivated or checked in other websites I have the same thing. Also I thought it could be Enfold 7.1.3 the problem, but I found it also with Enfold 6.0.8 (on a website where I didn’t update the theme).
I am not sure what you say about shortcodes. Here is the debug log form another website all updated[24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-audioplayer" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-blog" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-postslider" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-button" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-buttonrow" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-button-fullwidth" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-catalogue" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-comments" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-contact" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-slideshow" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-countdown" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-dynamic-field" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-gallery" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-maps" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-gridrow" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-heading" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-rotator" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-hr" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-icon" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-icon-circles" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-iconbox" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-icongrid" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-iconlist" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-image" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-image-diff" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-hotspot" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-sc-lottie-animation" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-magazine" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-masonry" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-siteloader" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-menu" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-notification" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-numbers" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-portfolio" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-post-metadata" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-progress-bar" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-promobox" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-sc-search" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-slideshow-accordion" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-social" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-tabsection" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-table" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-tabs" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-team" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-testimonials" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-timeline" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-toggles" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-video" was enqueued with dependencies that are not registered: avia-layout. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-audioplayer" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-chart-js" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-chart" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-contact" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-slideshow" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-countdown" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-gallery" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-gallery-hor" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-rotator" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-icon-circles" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-icongrid" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-iconlist" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-image-diff" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-hotspot" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-magazine" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-isotope" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-menu" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-notification" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-numbers" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-portfolio" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-progress-bar" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-slideshow-video" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-slideshow-accordion" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-tabsection" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-tabs" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-testimonials" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-timeline" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-toggles" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-video" was enqueued with dependencies that are not registered: avia-shortcodes. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131 [24-Feb-2026 09:11:10 UTC] PHP Notice: Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia_analytics_js" was enqueued with dependencies that are not registered: avia_builder_js. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.9.1.) in /home/hidgvei/marinemammalhabitat/wp-includes/functions.php on line 6131It seems that it detects all avia modules are enqueued with dependencies that are not registered
February 24, 2026 at 10:11 am #1495415Topic: WP Store Locator / Enold Datenschutz / google Maps
in forum Enfoldjustbusy
ParticipantHallo ich nutzte den WP Store Locator Version 2.2.261 um eine Karte mit Partner anzuzeigen. Das funktioniert auch gut der Code ist in einem Code-block Element eingebaut. Ich möchte aber das die Google Maps durch die Enfold Privacy And Cookies Einstellung erst nach Klick angezeigt wird – gibt es da eine Lösung ?. WP Store Locator empfiehlt ja ein anderes Plugin.
February 24, 2026 at 8:27 am #1495413Jorge Acebo
GuestDear Kriesi / Enfold Team,
I am writing a pre-sales inquiry regarding a WordPress project I have recently inherited. The site is currently running a very old version of Enfold (v4.5.7), but I do not have access to the original Envato account or the API Token used by the previous developer.
I intend to purchase a new, independent license for this domain to ensure the site is legally covered and can receive the latest code updates.
Before I complete the purchase, I have two technical questions:
License Replacement: Since the site already has Enfold installed (v4.5.7), can I simply enter the new Token from my new license into the existing theme options to trigger the update, or do the licenses need to be “transferred” (which I cannot do without the old account)?
Code Integrity: Given the huge version gap (4.5.7 to 6.x), would you recommend deleting the old /enfold/ theme folder and uploading the new version’s files via FTP to avoid conflicts between old and new PHP files?
I want to do things the right way and ensure the site’s code is up to date. Thank you for your guidance.
Best regards.
February 24, 2026 at 8:06 am #1495412In reply to: Issue with Enfold update 7.1.4
Hi werbeagenturlauf,
Please open a new thread and include WordPress admin login details in private, so that we can have a closer look at your site.
Best regards,
RikardFebruary 24, 2026 at 7:39 am #1495411Topic: Formatting not showing up
in forum Enfoldepurchase
ParticipantHi Enfold Support Team,
Formatting across my site disappear. Need to manually update every individual page to restore the correct formatting.This is an example page, where formatting is completely off, https://shamsgroup.com/patient-check-in-registration-kiosk/
Same issue happening on our staging site as well, https://w68.f91.myftpupload.com/contactless-patient-intake/Could you please help me identify the issue and a solution for this?
Thank you!
February 24, 2026 at 7:36 am #1495410In reply to: Fullscreen Homepage Teaser Implementation
Hi Ismael,
yes, we tested the Blank – no header, no footer template.
It removes:
• header
• footer
• sidebar
• the main Enfold wrapperHowever, it does not affect:
• Enfold’s internal filtering
• shortcode rendering
• script loading order
• potential SVG sanitizing
• the initial layout flash we experiencedSince we are running a full-screen SVG + GSAP animation, we need predictable script execution and no layout flash.
Is there any recommended way within Enfold to:
• prevent SVG filtering in Code Block elements
• avoid the initial layout flash
• control script loading order cleanlyThanks.
KR
TFebruary 24, 2026 at 5:10 am #1495396In reply to: pre purchase choosing template
Hi,
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,
IsmaelFebruary 23, 2026 at 10:40 pm #1495388In reply to: pre purchase choosing template
I understand that I can only use / buy one demo at a time. My question was if once I have purchased a particular template, (e.g. restaurant) can I add features or elements it may not have that I’lve seen and liked, such as a video slider or content reveal animations or other animations it may not have. Is there a library that part of enfold, or do I have to rely on another wordpress program such as gutenberg, or use other wordpress plugins. And if I have to get that elsewhere, and if so, will those plugins or gutenberg be compatible with the enfold template?
February 23, 2026 at 8:33 pm #1495383Topic: [Urgent] Websites not scrolling
in forum EnfoldMaltolomaeus
ParticipantHi there,
I’m facing problems with scrolling on enfold websites since a bit of time.
Not quite sure which version it started, but two of my customer websites are not possible to be scrolled for now with Enfold versions 7.1.4 and 7.0 on my other site.I wasn’t able to find any information towards that and was hoping that’s an interference of a plugin which is installed on both pages. But I couldn’t find any.
Could you please doublecheck and maybe fix that in a quick release or so? Of course when you find the problem…
Seems like, that it isn’t working on phones and also on my desktop computer. On Desktop, I only can scroll the page with the sidebar of the website and when hovering the mouse cursor to the header or within the “scroll to top”-Button. Every other area seems to be blocked to do that.
Please have a look on the both websites I will link in the private content area!
Thanks for your quick help!!
Best,
Martin
February 23, 2026 at 8:11 pm #1495382Topic: H tag all stands in capital letters
in forum EnfoldSchmidtgrafisk
ParticipantHey Enfold
Please help to make the H tag’s be as i write them – with the first letter capitalized and the rest in lowercase.
Thanks ;)
February 23, 2026 at 6:01 pm #1495379In reply to: Enfold Video Widgets Not Giving Black Box
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
RikardFebruary 23, 2026 at 3:21 pm #1495375Hey newmediologo,
Please follow this: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard -
This reply was modified 2 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi, I ‘m trying to have my pdfs load in a lightbox. I have tried 2 methods – the first being adding this code which didnt work. The second thing I treid (which I prefer) is the adding the plugin ARI Fancy Lightbox. But the same things happens and it is just black and the pdf wont load.
Topic: Cropped images in Lightbox
Dear Enfold Theme,
We are currently implementing a gallery page where a lightbox opens in a gallery with additional data and the image. Unfortunately, the image is only displayed partially. We are using the following function for this:$grid = new avia_post_grid( array( 'linking' => ‘’, ‘columns’ => ‘3’, ‘contents’ => ‘title’, ‘sort’ => ‘no’, 'paginate' => ‘yes’, ‘set_breadcrumb’ => false, ‘preview_mode’ => ‘auto’, ‘image_size’ => ‘full’ )); $grid->use_global_query(); echo $grid->html( ‘’ );Highlighted in bold that the full images should actually be used. However, this does not seem to work.
Hi have bought the Enfold theme 7-8 month ago while developing the site
now i am update the license code it not workingcan u check so that i can buy clear ny another purchase
Topic: Bulk Rename of URLs
Hi Have a website that I’m migrating from DIVI. I have moved all the pages to Enfold but can’t find a way to bulk rename all the links to the new domain. Could you please advise?
Hallo ich nutzte den WP Store Locator Version 2.2.261 um eine Karte mit Partner anzuzeigen. Das funktioniert auch gut der Code ist in einem Code-block Element eingebaut. Ich möchte aber das die Google Maps durch die Enfold Privacy And Cookies Einstellung erst nach Klick angezeigt wird – gibt es da eine Lösung ?. WP Store Locator empfiehlt ja ein anderes Plugin.
Dear Kriesi / Enfold Team,
I am writing a pre-sales inquiry regarding a WordPress project I have recently inherited. The site is currently running a very old version of Enfold (v4.5.7), but I do not have access to the original Envato account or the API Token used by the previous developer.
I intend to purchase a new, independent license for this domain to ensure the site is legally covered and can receive the latest code updates.
Before I complete the purchase, I have two technical questions:
License Replacement: Since the site already has Enfold installed (v4.5.7), can I simply enter the new Token from my new license into the existing theme options to trigger the update, or do the licenses need to be “transferred” (which I cannot do without the old account)?
Code Integrity: Given the huge version gap (4.5.7 to 6.x), would you recommend deleting the old /enfold/ theme folder and uploading the new version’s files via FTP to avoid conflicts between old and new PHP files?
I want to do things the right way and ensure the site’s code is up to date. Thank you for your guidance.
Best regards.
Topic: Formatting not showing up
Hi Enfold Support Team,
Formatting across my site disappear. Need to manually update every individual page to restore the correct formatting.This is an example page, where formatting is completely off, https://shamsgroup.com/patient-check-in-registration-kiosk/
Same issue happening on our staging site as well, https://w68.f91.myftpupload.com/contactless-patient-intake/Could you please help me identify the issue and a solution for this?
Thank you!
Hi there,
I’m facing problems with scrolling on enfold websites since a bit of time.
Not quite sure which version it started, but two of my customer websites are not possible to be scrolled for now with Enfold versions 7.1.4 and 7.0 on my other site.I wasn’t able to find any information towards that and was hoping that’s an interference of a plugin which is installed on both pages. But I couldn’t find any.
Could you please doublecheck and maybe fix that in a quick release or so? Of course when you find the problem…
Seems like, that it isn’t working on phones and also on my desktop computer. On Desktop, I only can scroll the page with the sidebar of the website and when hovering the mouse cursor to the header or within the “scroll to top”-Button. Every other area seems to be blocked to do that.
Please have a look on the both websites I will link in the private content area!
Thanks for your quick help!!
Best,
Martin
Hey Enfold
Please help to make the H tag’s be as i write them – with the first letter capitalized and the rest in lowercase.
Thanks ;)
