Viewing 30 results - 1 through 30 (of 11,204 total)
  • Author
    Search Results
  • #1495748

    Sorry, again, for the lag in responding, @Guenni007, and thanks again for your efforts! I think your code wasn’t working right away for me, and I needed some other accessibility fixes for the mobile menu (like a focus trap and making the spacebar open links), so I worked with Claude to implement this code in my child theme functions file — lmk if you see any problems with it:

    Stage 1 – Runs immediately on page load:
    Finds the hamburger toggle
    Adds role=”button”
    Adds aria-expanded=”false”
    Adds Space key handler
    Happens before user ever interacts with it

    Stage 2 – Runs when overlay is created (first click):
    Adds aria-controls
    Sets up focus trap
    Adds aria-expanded management (toggling true/false)
    Adds ESC key support
    Adds Space key on menu items

    /* ==========================================================================
       MOBILE MENU FOCUS TRAP WITH ROLE & ARIA-EXPANDED - TWO-STAGE INIT
       ========================================================================== */
    function abode_enfold_mobile_menu_focus_trap_complete() { ?>
        <script>
        (function () {
            var toggleEnhanced = false;
            var fullInitialized = false;
    
            // STAGE 1: Enhance the toggle button immediately (runs on page load)
            function enhanceToggle() {
                if (toggleEnhanced) return;
                
                var toggle = document.querySelector('a[href="#"][aria-label="Menu"]');
                if (!toggle) return;
                
                toggleEnhanced = true;
                
                // Add role="button" immediately
                toggle.setAttribute('role', 'button');
                toggle.setAttribute('aria-expanded', 'false');
                
                // Add Space key handler immediately
                toggle.addEventListener('keydown', function (e) {
                    if (e.key === ' ' || e.key === 'Spacebar') { 
                        e.preventDefault(); 
                        this.click(); 
                    }
                });
                
                console.log('✓ Stage 1: Toggle button enhanced with role=button and Space key');
            }
    
            // STAGE 2: Full initialization with focus trap (runs after overlay is created)
            function fullInit() {
                if (fullInitialized) return;
                
                var toggle  = document.querySelector('a[href="#"][aria-label="Menu"]');
                var overlay = document.querySelector('.av-burger-overlay');
                var menu    = document.querySelector('#av-burger-menu-ul');
                
                if (!toggle || !overlay || !menu) return;
                
                fullInitialized = true;
                
                // Make sure toggle is enhanced (in case Stage 1 hadn't run yet)
                if (!toggleEnhanced) {
                    enhanceToggle();
                }
                
                // Add aria-controls
                toggle.setAttribute('aria-controls', 'av-burger-menu-ul');
                
                console.log('✓ Stage 2: Full initialization with focus trap and aria-expanded management');
    
                function getLinks() {
                    return Array.from(menu.querySelectorAll('a[href]')).filter(function (a) {
                        var li = a.closest('li');
                        return li && li.offsetParent !== null &&
                               getComputedStyle(a).visibility !== 'hidden' &&
                               getComputedStyle(a).display    !== 'none';
                    });
                }
    
                function isOpen() {
                    var s = window.getComputedStyle(overlay);
                    return s.display !== 'none' && parseFloat(s.opacity) > 0;
                }
    
                // Keyboard navigation
                document.addEventListener('keydown', function (e) {
                    if (!isOpen()) return;
                    
                    // Tab key - focus trap
                    if (e.key === 'Tab') {
                        var links = getLinks();
                        if (!links.length) return;
                        if (e.shiftKey && document.activeElement === links[0]) {
                            e.preventDefault(); 
                            links[links.length - 1].focus();
                        } else if (!e.shiftKey && document.activeElement === links[links.length - 1]) {
                            e.preventDefault(); 
                            links[0].focus();
                        }
                    } 
                    // Space key on menu items - activate link
                    else if (e.key === ' ' || e.key === 'Spacebar') {
                        var a = document.activeElement;
                        if (a && a.tagName === 'A' && menu.contains(a)) { 
                            e.preventDefault(); 
                            a.click(); 
                        }
                    } 
                    // Escape key - close menu
                    else if (e.key === 'Escape') {
                        toggle.click();
                    }
                });
    
                // Watch for menu open/close and update aria-expanded
                new MutationObserver(function (mutations) {
                    mutations.forEach(function (m) {
                        if (m.attributeName !== 'style') return;
                        
                        if (isOpen()) {
                            // Menu opened
                            toggle.setAttribute('aria-expanded', 'true');
                            setTimeout(function () { 
                                var l = getLinks(); 
                                if (l.length) l[0].focus(); 
                            }, 400);
                        } else {
                            // Menu closed
                            toggle.setAttribute('aria-expanded', 'false');
                            setTimeout(function () { 
                                toggle.focus(); 
                            }, 100);
                        }
                    });
                }).observe(overlay, { attributes: true, attributeFilter: ['style'] });
            }
    
            // Try to enhance toggle immediately
            if (document.readyState === 'loading') {
                document.addEventListener('DOMContentLoaded', enhanceToggle);
            } else {
                enhanceToggle();
            }
            
            // Try full init at various times
            if (document.readyState === 'loading') {
                document.addEventListener('DOMContentLoaded', fullInit);
            } else {
                fullInit();
            }
            setTimeout(fullInit, 500);
            setTimeout(fullInit, 1500);
    
            // Watch for Enfold dynamically creating the menu overlay
            new MutationObserver(function (mutations) {
                mutations.forEach(function (m) {
                    m.addedNodes.forEach(function (node) {
                        if (node.nodeType === 1 && node.classList &&
                            node.classList.contains('av-burger-overlay')) {
                            setTimeout(fullInit, 100);
                        }
                    });
                });
            }).observe(document.body, { childList: true, subtree: true });
        })();
        </script>
    <?php }
    add_action('wp_footer', 'abode_enfold_mobile_menu_focus_trap_complete', 999);

    Hi Mike

    Sorry to hear you have troubles logging in to my WordPress. I have not changed the provided login credentials as of Feb 9th, and I double checked, it works on my end: https://kellerhalsconsulting.com/wp-login.php So please try again.

    And great to hear that you could recrate my page on your side with buttons working fine with no bouncing, so I am optimistic on my end.

    Please note: I already added

    //set builder mode to debug
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug()
    {
    return “debug”;
    }

    to my file: /wp-content/themes/enfold/functions.php

    Thank you for your help.

    Best regards
    Philipp

    Hi,
    I was not able to login to your site, as the typically login url is not working /wp-admin/ I assume that you have set a custom one.
    I tried to recreate your page on my site with five color sections, each 100vh and with a button and a contact form at the bottom. All five buttons work with no bouncing.
    Please share your login url and Enable the Avia Layout Builder Debugger to your functions.php file. You may need to scroll the documentation page to the Debug mode section or use the sidebar TOC link.
    With this I can copy your page exactly and add it to my test site to see if the same error occurs there.

    Best regards,
    Mike

    Hi,
    I do not have experience with elfsight, but from examining your button I can tell that there is no direct link to your side form popout, it works via the data-elfsight-show-form attribute:
    qqBXysj.md.png
    There is not a built-in way to add a data attribute to a button.
    So I created a second button for you with your link snippet and the Enfold classes so the style is the same. Please check. 

    Best regards,
    Mike

    #1495593

    Sorry for the lag replying, @Guenni007 — I always appreciate your time and effort! Frankly, I didn’t really dig into your replies too much — I just scanned them and couldn’t quickly find a reason to not use the Claude code that was already working for me, so I just stuck with that. Here’s a leaner version of that code — again, this is adding aria labels to prev/next arrows for enfolds lightbox galleries and the custom popups @Guenni007 provided me previously, which both use the Magnific Popup code. So this is just fyi, unless anyone sees any serious issue with it:

    /* ==========================================================================
       MAGNIFIC POPUP ARIA LABELS
       ========================================================================== */
    add_action('wp_footer', 'abode_magnificpopup_aria_labels', 999);
    function abode_magnificpopup_aria_labels() { ?>
    <script>
    jQuery(document).ready(function($) {
      $.extend(true, $.magnificPopup.defaults, {
        closeMarkup: '<button title="Close (Esc)" type="button" class="mfp-close" aria-label="Close popup">×</button>',
        gallery: {
          arrowMarkup: '<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%" aria-label="%title%"></button>',
          tPrev: 'Previous bio',
          tNext: 'Next bio'
        }
      });
      
      var observer = new MutationObserver(function(mutations) {
        mutations.forEach(function(mutation) {
          mutation.addedNodes.forEach(function(node) {
            if (node.nodeType === 1) {
              var $node = $(node);
              if ($node.hasClass('mfp-arrow') || $node.find('.mfp-arrow').length) {
                var isImage = $('.mfp-figure').length > 0;
                var prevLabel = isImage ? 'Previous image' : 'Previous bio';
                var nextLabel = isImage ? 'Next image' : 'Next bio';
                $('.mfp-arrow-left').attr('aria-label', prevLabel);
                $('.mfp-arrow-right').attr('aria-label', nextLabel);
              }
            }
          });
        });
      });
      
      observer.observe(document.body, {childList: true, subtree: true});
    });
    </script>
    <?php }
    #1495416

    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 6131
    

    It seems that it detects all avia modules are enqueued with dependencies that are not registered

    #1495383
    Maltolomaeus
    Participant

    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

    #1495307

    I didn’t manually add the first CSS you mentioned, but it was probably generated by my earlier adjustments in the Advanced Styling panel.

    Related to that, the “Reset all options” button at the bottom of that section would just reset all of the Advanced Styling options and NOT other changes in the Enfold area, e.g., General Styling, etc., is that correct?

    I think part of the issue was the plugin WP-Rocket had cached CSS versions that weren’t updated in real time with my changes. After “Clearing used CSS” in the settings area for WP-Rocket, I was able to target the burger menu with both options you outlined. I opted to not use the override CSS option via Quick CSS, as it seemed cleaner to use Advanced Styling.

    One short follow up: Where is the Quick CSS in the hierarchy? For a different matter, I tried to target the fullscreen slider caption titles with:

    .avia-caption-title {text-transform:none;}

    …to get rid of the transform to uppercase that seems to be the default, but it didn’t work until I did:

    .avia-caption-title {text-transform:none!important;}

    Is that because the Quick CSS styles are read before the other stylesheets—meaning, the !important element is often required for things?

    Thanks again.

    • This reply was modified 1 week, 5 days ago by Brad.
    #1495281
    elenapoliti
    Participant

    I have encountering an issue with Enfold 7.1.3 in various websites. The debug_log has the following errors, exactly as reported by another user here https://kriesi.at/support/topic/multiple-errors-on-pages-and-posts-analysis-included/

    
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 UTC] PHP Notice:  Function WP_Styles::add was called <strong>incorrectly</strong>. The style with the handle "avia-module-slideshow-ls" 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 UTC] PHP Notice:  Function WP_Scripts::add was called <strong>incorrectly</strong>. The script with the handle "avia-module-slideshow-ls" 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    [20-Feb-2026 10:37:32 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/www/public/isea-development/wp-includes/functions.php on line 6131
    
    

    I tried the function suggested in the above mentioned post, but it messed up the custom css I created in my child theme.

    In private content details

    #1495254

    Hey dreyerjm,

    Thank you for the inquiry.

    Try adding this code in the Quick CSS field.

    #top .av-equal-height-column .avia-button-wrap {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    
    #top .av-equal-height-column {
        padding-bottom: 50px;
    }
    

    You can also replace av-equal-height-column with a custom css class name if you want this applied only to specific columns.

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Result:

    q3F7rml.md.png

    Best regards,
    Ismael

    Hi,

    There is no icon specific to Upwork, but you can add one using the Iconfont Manager. Please check this documentation.

    https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options
    https://kriesi.at/documentation/enfold/icon/

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi Rikard

    I deactivated all plugins and deleted the CSS, no change.

    Please note, this issues checked with ChatGPT:

    Here’s a clear English version of your text:

    > Why does the page “jump up and down”?
    > The cause isn’t the button itself, but the combination of:
    > – multiple anchor links using #kontaktformular
    > – Enfold’s **sticky header + scroll offset**
    > – possibly **animation or lazy loading**
    >
    > 👉 Result:
    > On the first click → works correctly
    > On subsequent clicks → the browser thinks:
    > “I’m already at the anchor,”
    > → so it briefly jumps up and down without actually scrolling.
    >
    > This is standard HTML behavior, amplified by Enfold.

    Any thoughts how I can resolve this issue?

    Thank yous so much!

    Best,
    Philipp

    Hi Ismael

    Thank you for coming back.

    Nothing special (standard plugins like staging, Yoast, etc.) and only custom CSS:

    /*Menue Button*/
    /*#top #wrap_all .header_color li#menu-item-10312.av-menu-button-colored > a .avia-menu-text {background-color:#FA7D19;}*/

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {background-color:#FA7D19 !important; border-color:#FA7D19 !important;}

    #menu-item-10312 .avia-menu-text {background-color:#FA7D19 !important; border-color:#FA7D19 !important;}

    /*Desktop*/
    @media only screen and (max-width: 1920px) {
    .indicates-required {display:none !important;}
    .mc-field-group label {display:none !important;}
    .mc-field-group {clear:none !important; width:32% !important; float:left !important; margin-right:13px;}
    .mc-field-group input {font-size:16px !important; padding:13px !important;}
    #mc_embed_signup .button {background-color:#2d5c88 !important; border-color:#0b3a66 !important; width:32% !important;border-radius:2px !important; height:45px !important; line-height:23px !important;}
    #mc_embed_signup .button:hover {background-color:#3d71a1 !important; border-color:#1b5080 !important;}
    }

    /*Mobil – Tablet*/
    @media only screen and (max-width: 768px) {
    .mc-field-group input {margin-bottom:0px !important;}
    .mc-field-group {clear:none !important; width:100% !important; float:left !important; margin-right:13px; margin-bottom:0px !important;}
    #mc_embed_signup .button {width:100% !important;}
    }

    /*News Übersicht Seite – Datum deaktiviert*/
    .html_elegant-blog .avia-content-slider .slide-meta {display:none !important;}
    /*Zwei Border Linien Blog Seite deaktiviert*/
    .html_elegant-blog #top .post-entry .post-meta-infos {display:none !important;}

    #top .av-menu-button > a .avia-menu-text {border-radius: 20px !important;}

    /*P-Tag move font size*/
    .p-move-h2 {font-size:40px !important; font-weight:bold;}

    /* CSS Enfold-Mailchimp-Newsletter Input fields*/
    #top .avia_ajax_form.avia-mailchimp-form input[type=’text’] {
    background: #c4dff6;
    color: #00334e;
    }
    #top .avia_ajax_form.avia-mailchimp-form .required{
    display: none;
    }

    Any thoghts?

    Thank you.

    Philipp

    #1494965
    coldstreamer
    Participant

    Are you guys seeing multiple error messages on the posts and pages WP pages?

    Enfold: 7.1.3
    WordPress 6.9.1
    Chrome Browser 144.0.7559.133 (Official Build) (arm64)
    Safari Version 26.2 (21623.1.14.11.9)
    Vivaldi Version 7.8.3925.62 (Official Build) (arm64), Chromium Version 144.0.7559.167
    Firefox 147.0.2 (aarch64)
    Running on a Mac Mini M2 (Tahoe 26.2)

    Error Messages when opening Posts and Pages (but similar error seen on e.g. the Plugins page):

    Notice: WP_Styles::add(): The style with the handle “avia-module-audioplayer” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-blog” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-postslider” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-button” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-buttonrow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-button-fullwidth” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-catalogue” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-comments” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-contact” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-countdown” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-dynamic-field” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-gallery” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-maps” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-gridrow” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-heading” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-rotator” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-hr” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icon” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icon-circles” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-iconbox” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-icongrid” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-iconlist” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-image” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-image-diff” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-hotspot” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-sc-lottie-animation” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-magazine” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-masonry” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-siteloader” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-menu” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-notification” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-numbers” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-portfolio” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-post-metadata” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-progress-bar” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-promobox” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-sc-search” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow-accordion” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-slideshow-ls” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-social” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-tabsection” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-table” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-tabs” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-team” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-testimonials” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-timeline” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-toggles” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Styles::add(): The style with the handle “avia-module-video” was enqueued with dependencies that are not registered: avia-layout. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-audioplayer” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-chart-js” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-chart” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-contact” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-countdown” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-gallery” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-gallery-hor” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-rotator” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-icon-circles” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-icongrid” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-iconlist” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-image-diff” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-hotspot” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-magazine” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-isotope” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-menu” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-notification” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-numbers” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-portfolio” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-progress-bar” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-video” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-accordion” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-slideshow-ls” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-tabsection” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-tabs” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-testimonials” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-timeline” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-toggles” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia-module-video” was enqueued with dependencies that are not registered: avia-shortcodes. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    Notice: WP_Scripts::add(): The script with the handle “avia_analytics_js” was enqueued with dependencies that are not registered: avia_builder_js. (This message was added in version 6.9.1.) Please see Debugging in WordPress for more information. in /homepages/1/d4297824949/htdocs/wordpress/wp-includes/functions.php on line 6163

    +++

    Here’s Gemini’s Research result of looking at the functions.php code:

    The error in this code is a logic and implementation mismatch related to how the WordPress function wp_trigger_error() handles message formatting.
    Specifically, there are two issues in the final line:
    wp_trigger_error( ”, $message );
    1. Redundant Formatting (The Main Issue)
    In WordPress 6.4+, wp_trigger_error() was introduced to standardize how “Doing it wrong” and “Deprecated” notices are handled.
    Inside wp_trigger_error(), WordPress automatically prepends the text:
    “Function %s was called incorrectly…”
    However, your code manually builds that exact same string in the lines above:
    $message = sprintf(
    __( ‘Function %1$s was called incorrectly. %2$s %3$s’ ),
    $function_name,
    $message,
    $version
    );
    The Result: If this code runs, the error output will look like a stuttering mess:

    “Function was called incorrectly. Function my_function_name was called incorrectly. [Actual Message] [Version]”

    2. Empty First Parameter
    The first parameter of wp_trigger_error( $function_name, $message ) is intended to be the name of the function that was called incorrectly. By passing an empty string (”), you are preventing wp_trigger_error from correctly identifying the culprit in its own automated prefix.

    +++

    What I tried:

    Enfold > Performance > Disabled all file merging and compression (Enfold > Performance), cleared all caches (very few plugins and no cacheing on the website).
    Enfold > Performance > Unused features > changed to ‘Always load all elements’
    Checked for /wp-content/uploads/dynamic_avia and its permissions.
    Temp. emptying of dynamic_avia reset the website visually.

    These are warnings, so the website seems to work OK, but it looks like it needs to be fixed elsewhere (loading of avia-layout).

    #1494936
    Jahrl
    Participant

    Hi

    I get this error when going into the page for pages, any ideas? I have this setup for a few sites but only this has this issue (so far). Any suggestion?:
    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-audioplayer” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-blog” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-postslider” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-button” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-buttonrow” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-button-fullwidth” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-catalogue” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-comments” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-contact” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-slideshow” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-countdown” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-dynamic-field” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-gallery” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-maps” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-gridrow” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-heading” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-rotator” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-hr” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-icon” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-icon-circles” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-iconbox” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-icongrid” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-iconlist” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-image” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-image-diff” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-hotspot” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-sc-lottie-animation” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-magazine” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-masonry” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-siteloader” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-menu” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-notification” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-numbers” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-portfolio” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-post-metadata” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-progress-bar” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-promobox” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-sc-search” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-slideshow-accordion” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-social” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-tabsection” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-table” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-tabs” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-team” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-testimonials” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-timeline” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-toggles” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Styles::add anropades felaktigt. Stilen med namnet ”avia-module-video” köades med beroenden som inte är registrerade: avia-layout. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-audioplayer” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-chart-js” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-chart” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-contact” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-slideshow” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-countdown” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-gallery” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-gallery-hor” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-rotator” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-icon-circles” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-icongrid” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-iconlist” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-image-diff” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-hotspot” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-magazine” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-isotope” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-menu” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-notification” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-numbers” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-portfolio” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-progress-bar” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-slideshow-video” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-slideshow-accordion” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-tabsection” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-tabs” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-testimonials” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-timeline” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-toggles” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia-module-video” köades med beroenden som inte är registrerade: avia-shortcodes. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    Notice: Funktionen WP_Scripts::add anropades felaktigt. Skriptet med namnet ”avia_analytics_js” köades med beroenden som inte är registrerade: avia_builder_js. Mer information finns i Felsökning i WordPress. (Detta meddelande lades till i version 6.9.1.) in /home/erfrisor/eriksson-robach.se/wp-includes/functions.php on line 6131

    #1494718

    so in total : replace the snippet by:
    ( btw. i changed the code on my page too – if you hover the snippet there is on top right of the codeblock a copy button)

    
    /**
     * Enfold Masonry Caption Fix - NUR für Perfect Grid
     * Schiebt die Caption unter das Bild, ohne es zu verdecken.
     */
    
    function enfold_masonry_perfect_grid_caption_fix() {
    ?>
    <style>
        /* ========================================
           PERFECT GRID CSS
           ======================================== */
        
        /* Erlaubt der Caption, über den Container hinauszuragen */
        #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry,
        #top .av-masonry-gallery.av-masonry-gallery-fixed figure.av-inner-masonry {
            overflow: visible !important;
        }
        
        /* Positioniert die Caption direkt unter das Bild-Quadrat */
        #top .av-masonry.av-fixed-size.av-masonry-gallery .av-inner-masonry-content,
        #top .av-masonry-gallery.av-masonry-gallery-fixed figcaption.av-inner-masonry-content {
            position: relative !important;
            top: 100%;
            background: #ffffff; /* Hier ggf. deine Wunschfarbe für den Hintergrund */
        }
    
        /* Korrektur für Tablets */
        @media only screen and (min-width: 767px) and (max-width: 989px) {
            .responsive .av-masonry-gallery .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content {
                display: block !important;
            }
        }
    </style>
        
    <script>
        (function($) {
            'use strict';
            
            function fixPerfectGrid() {
                // Nur für Masonry Galerien mit festem Raster (Perfect Grid)
                $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').each(function() {
                    var $gallery = $(this);
                    var columnCount = 1;
                    
                    // Spaltenanzahl ermitteln
                    if ($gallery.hasClass('av-masonry-col-2')) columnCount = 2;
                    else if ($gallery.hasClass('av-masonry-col-3')) columnCount = 3;
                    else if ($gallery.hasClass('av-masonry-col-4')) columnCount = 4;
                    else if ($gallery.hasClass('av-masonry-col-5')) columnCount = 5;
                    else if ($gallery.hasClass('av-masonry-col-6')) columnCount = 6;
                    
                    if ($gallery.hasClass('av-masonry-col-flexible')) {
                        var $items = $gallery.find('.av-masonry-item-with-image:visible');
                        if ($items.length >= 2) {
                            var firstTop = $items.eq(0).offset().top;
                            var itemsInFirstRow = 1;
                            for (var i = 1; i < Math.min($items.length, 10); i++) {
                                if (Math.abs($items.eq(i).offset().top - firstTop) < 10) {
                                    itemsInFirstRow++;
                                } else { break; }
                            }
                            columnCount = itemsInFirstRow;
                        }
                    }
                    
                    // Maximalhöhe der Captions finden, damit die Zeilen gleichmäßig bleiben
                    var maxCaptionHeight = 0;
                    $gallery.find('.av-masonry-item-with-image').each(function() {
                        var $caption = $(this).find('figcaption.av-inner-masonry-content, .av-inner-masonry-content');
                        if ($caption.length && $caption.is(':visible')) {
                            maxCaptionHeight = Math.max(maxCaptionHeight, $caption.outerHeight(true));
                        }
                    });
                    
                    // Abstand unten einfügen, damit das Masonry-Layout Platz für die Caption lässt
                    if (maxCaptionHeight > 0) {
                        $gallery.find('a.av-masonry-entry, .av-masonry-item-with-image').css('margin-bottom', maxCaptionHeight + 'px');
                    }
                });
                
                // Layout neu berechnen
                $('.av-masonry-gallery.av-masonry-gallery-fixed, .av-masonry.av-fixed-size.av-masonry-gallery').isotope('layout');
            }   
    
            // ========================================
            // INITIAL LOAD - Nur auf Bilder warten, nicht auf die ganze Seite
            // ========================================
            (function() {
                var $gallery = $('.av-masonry-gallery');
                
                if ($gallery.length && typeof $.fn.imagesLoaded === 'function') {
                    // Wartet NUR auf die Bilder in der Galerie
                    $gallery.imagesLoaded(function() {
                        setTimeout(fixPerfectGrid, 200);
                    });
                } else {
                    // Fallback für den Notfall
                    setTimeout(fixPerfectGrid, 600);
                }
            })();
    
            
            // Nach Enfold Events
            $(document).on('av-masonry-complete', function() {
                setTimeout(fixPerfectGrid, 250);
            });
            
            // Bei Größenänderung
            $(window).on('debouncedresize', function() {
                // Reset Margin
                $('.av-masonry-gallery.av-masonry-gallery-fixed .av-masonry-item-with-image, .av-masonry.av-fixed-size.av-masonry-gallery .av-masonry-item-with-image').css('margin-bottom', '');
                fixPerfectGrid();
            });
            
        })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'enfold_masonry_perfect_grid_caption_fix', 999);
    
    

    i also replaced the on load event by:

    // Run initially
    $(window).on('load', function() {
        $('.av-masonry-gallery').imagesLoaded(function() {
            setTimeout(fixAllMasonryModes, 200);
        });
    });

    and implemented the enfold debounceresize function on performance reasons.

    #1494524
    actichemph
    Participant

    Hi. I installed Enfold Shop Demo. Our website is not a store, but I like Enfold Shop Demo design elements.
    How do you add a post to the full slider in the Home page with “Read more” button? I used “post slider” element but the post wasn’t automatically added to the Home page slider after I published it.
    I’m not an IT and honestly, I find Enfold theme complicated, difficult and not non-IT user-friendly. So, I hope somebody can help. Thanks!

    #1494485

    In reply to: neue Support Lizenz

    Hi,

    You need to go to the Enfold sub forum, then click this button: https://imgur.com/a/AnoSPNb, or use this link to open a new thread.

    Best regards,
    Rikard

    #1494484

    Hi,

    Thank you for the update.

    In the enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, look for the masonry_filter function and adjust this selector or variable.

    links		= masonry.find('.av-masonry-sort a'),
    

    Replace it with:

    links		= masonry.find('.av-masonry-sort button'),
    

    Best regards,
    Ismael

    epurchase
    Participant

    Hi,
    After updating theme to latest version facing difficulties like many elements does not open for editing at the back end of the website. (Heading, Separator / Whitespace, Icon List, button).

    It just shows empty white block or sometime it takes lot of time to load the block element for editing.

    Thought some plugins might be causing this conflict and tried to disable all the plugins which was installed already, by doing so I got critical error and fixed it with the help of Host provider.

    Now the website is up, enabled few plugins and content elements showing up sometime and not showing option for editing sometime, but still error pops up on the top of the page if we are in ‘Edit Advance Layout Builder’.

    These were the few error which I copied for your reference.

    Notice: Function WP_Abilities_Registry::get_registered was called incorrectly. Ability “gd-mcp/get-site-info” not found. Please see Debugging in WordPress for more information. (This message was added in version 6.9.0.) in /var/www/wp-includes/functions.php on line 6131

    Notice: Function WP_Abilities_Registry::get_registered was called incorrectly. Ability “gd-mcp/get-post” not found. Please see Debugging in WordPress for more information. (This message was added in version 6.9.0.) in /var/www/wp-includes/functions.php on line 6131

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/wp-includes/functions.php:6131) in /var/www/wp-admin/admin-header.php on line 14

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/wp-includes/functions.php:6131) in /var/www/wp-includes/option.php on line 1740

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/wp-includes/functions.php:6131) in /var/www/wp-includes/option.php on line 1741

    Theme Version: 7.1.3
    Using Enfold Child theme
    PHP Version 7.4

    #1494350

    Hey sky19er,

    Thank you for the inquiry.

    The sorting buttons are indeed defined as links, but you can modify them in the
    enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file. Look for the following block of code around line 494:

    	$sort_loop .= 	"<span class='text-sep {$term->slug}_sort_sep {$show_item}'>/</span>";
    					$sort_loop .= 	'<a href="#" data-filter="' . $term->slug . '_sort" class="'.$term->slug.'_sort_button ' . $show_item . '" >';
    					$sort_loop .=		'<span class="inner_sort_button">';
    					$sort_loop .=			'<span>' . esc_html( trim( $term->name ) ) . '</span>';
    					$sort_loop .=			"<small class='avia-term-count'> " . $term_count[ $term->term_id ] . ' </small>';
    					$sort_loop .=		'</span>';
    					$sort_loop .= 	'</a>';
    

    Best regards,
    Ismael

    #1494309
    xeovision
    Participant

    Hallo,

    i want to add a button above the main menu right but inside the menu block not in the top menu line.
    So, i used the hooks but i guess, there is no such hook for my need… any idea how to place the button like this?

    Button was created as custom widget.
    This is the code i use to implement:

    /* widget in header */
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'btn-immo-bewerten' );
    }

    This is how it looks like
    seb des 1

    And this is has it has to be
    seb des 2

    • This topic was modified 1 month, 1 week ago by xeovision.
    #1494308

    try this in child-theme functions.php:

    function custom_replace_burger_anchor_with_button( $items, $args ){ 
        $pattern = '/(<li[^>]*class="[^"]*av-burger-menu-main[^"]*"[^>]*>)\s*<a([^>]*)>/is';
        $items = preg_replace($pattern, '$1<button type="button" $2>', $items);
        $items = preg_replace('/<\/a>(\s*<\/li>\s*$)/', '</button>$1', $items);
        return $items;
    }
    add_filter( 'wp_nav_menu_items', 'custom_replace_burger_anchor_with_button', 9999, 2 );


    BUT:
    Please note that in this case, you will no longer need to assign all styles to the a tag, but rather to the button tag.
    In this case, it might be better to use role=”button” and class=avia-button.

    function custom_enhance_burger_anchor_regex( $items, $args ) {
        $pattern = '/<a href="#" aria-label="(.*?)"/i';
        $replacement = '<a href="#" role="button" class="avia-button" aria-label="$1"';  
        $items = preg_replace($pattern, $replacement, $items);
        return $items;
    }
    add_filter( 'wp_nav_menu_items', 'custom_enhance_burger_anchor_regex', 9999, 2 );

    No CSS break: Since it remains an anchor-tag, all Enfold styles for the menu continue to work perfectly.
    A11y-compliant: With role=”button,” we tell the screen reader: “Ignore that there is a link here; treat this element like a button.”

    maybe it is better to not add the class avia-button because it might come into conflict with some stylings.
    use a different class there f.e.: avia-burger-button
    then you can easily select it via this class.

    #1494306

    First of all, the icon is marked with aria-label=“Menu,” which is best practice.

    And to understand your question correctly, they consider an anchor tag with such a label to be misleading?
    So you would prefer it to be like this?

    by the way – all enfold buttons do not have the button tag – they got that extra-class : avia-button

    Andrew McMullen
    Guest

    Hello,

    I want to make a serious complaint about the Enfold theme’s very large “Reset All Options” button being placed right under every page in Enfold Theme Options. The placement makes it extremely easy to click by accident.

    I destroyed my site in one click after spending three days meticulously setting it up. I’ve seen on your forums that this issue happens to many users, and it’s not uncommon. My support period has expired and I paid for this theme a long time ago, so it feels unfair that I have to pay again just to report how problematic this placement is.

    There is no clear “Are you sure?” or confirmation before the reset executes, and the button is right where your eye and cursor naturally land as you scroll the settings. When I have clicked it in the past, I thought it was resetting only the specific settings page I was on. This time the placement caused the click — I didn’t even read the button text before instinctively clicking because it was right where I expected the “Save” or similar button to be.

    This needs to be updated. A destructive action like this should be in a safe location and require a confirmation step, not shown prominently on every settings page where it’s constantly open to accidental disastrous results. It’s a simple change that would prevent a lot of unnecessary loss and frustration for your users.

    In addition to a confirmation prompt, the reset action should recommend that users export their theme settings first (using Enfold > Import/Export → Export Theme Settings File), so they can easily restore customisations if something goes wrong. According to the documentation, exporting theme settings saves all theme options into a file that can be re-imported later — this is exactly the kind of protective step missing before a destructive action like “Reset All Options” is run.

    guys please , I beg of you fix this issue, its heartbreaking when you loose all your settings because an easily preventable mistake.

    Thank you.
    Andrew

    #1494037

    Hey SurigliaStudio,
    When I test your site the “Taglie” button doesn’t create a mobile style flyout menu, I assume that you now have the plugin disabled, but I think that I understand. I have created a custom function that will create a mobile style overlay menu from a sticky button on the right using a image that you can choose:
    fUawEAX.md.png
    fUaOLwF.md.png
    and on mobile the overlay is about 95% of the screen.
    The function uses the Named Menus from your WordPress menus to show:
    fUaQF6B.md.png
    In Configuration there is a line to choose your menu image/icon and the default menu to show on all pages:
    fUcd32j.md.png
    and below you can add as many additional menus with an array of pages that they will show on:
    fUcFI4e.md.png
    The code also has all of the css built-in for styling if you want to adjust.
    Add this code to your child theme functions.php file, if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    fUcTO4R.jpg
    then add the above code and save.

    /**
     * Add Sticky Button with Fly-out Menu
     * Add this to your Enfold child theme's functions.php
     */
    
    function custom_sticky_menu_button() {
        // Configuration - Change these values as needed
        $button_image = '/wp-content/uploads/2026/01/menu.png'; // Update path to your PNG
        $menu_slug = 'sticky menu'; // Default menu slug - change as needed
        
        // Optional: Set different menu based on page ID
        $current_page_id = get_the_ID();
        // Example: Use different menu for specific pages
         if (in_array($current_page_id, array(1028, 1080, 1031, 1034))) {
            $menu_slug = 'sticky menu two';
         }
    	if (in_array($current_page_id, array(1376, 1331, 1277, 1283))) {
            $menu_slug = 'sticky menu three';
         }
        
        // Get the menu
        $menu_items = wp_get_nav_menu_items($menu_slug);
        
        if (!$menu_items) {
            return; // Exit if menu doesn't exist
        }
        ?>
        
        <!-- Sticky Button -->
        <div id="sticky-menu-btn" class="sticky-menu-button">
            " alt="Menu">
        </div>
        
        <!-- Fly-out Menu Overlay -->
        <div id="flyout-menu-overlay" class="flyout-menu-overlay">
            <div class="flyout-menu-close">×</div>
            <nav class="flyout-menu-content">
                <?php
                wp_nav_menu(array(
                    'menu' => $menu_slug,
                    'container' => false,
                    'menu_class' => 'flyout-nav-menu',
                    'fallback_cb' => false
                ));
                ?>
            </nav>
        </div>
        
        <style>
            /* Sticky Button Styles */
            .sticky-menu-button {
                position: fixed;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                border-radius: 50%;
                cursor: pointer;
                z-index: 9998;
                transition: opacity 0.3s ease;
                box-shadow: 0 2px 10px rgba(0,0,0,0.3);
                overflow: hidden;
            }
            
            .sticky-menu-button img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .sticky-menu-button.hidden {
                opacity: 0;
                pointer-events: none;
            }
            
            /* Fly-out Menu Overlay */
            .flyout-menu-overlay {
                position: fixed;
                top: 0;
                right: -100%;
                width: 25%;
                height: 100vh;
                background: #fff;
                z-index: 9999;
                transition: right 0.4s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
                overflow-y: auto;
            }
            
            .flyout-menu-overlay.active {
                right: 0;
            }
            
            /* Close Button */
            .flyout-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 36px;
                cursor: pointer;
                color: #333;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
                transition: color 0.3s ease;
            }
            
            .flyout-menu-close:hover {
                color: #000;
            }
            
            /* Menu Content */
            .flyout-menu-content {
                padding: 80px 30px 30px;
            }
            
            .flyout-nav-menu {
                list-style: none;
                margin: 0;
                padding: 0;
            }
            
            .flyout-nav-menu li {
                margin: 0 0 15px 0;
            }
            
            .flyout-nav-menu a {
                display: block;
                padding: 12px 0;
                color: #333;
                text-decoration: none;
                font-size: 16px;
                transition: color 0.3s ease;
                border-bottom: 1px solid #eee;
            }
            
            .flyout-nav-menu a:hover {
                color: #000;
            }
            
            /* Sub-menu styles */
            .flyout-nav-menu .sub-menu {
                list-style: none;
                margin: 10px 0 0 20px;
                padding: 0;
            }
            
            .flyout-nav-menu .sub-menu a {
                font-size: 14px;
                padding: 8px 0;
            }
            
            /* Mobile Styles */
            @media (max-width: 768px) {
                .flyout-menu-overlay {
                    width: 95%;
                }
            }
        </style>
        
        <script>
            (function() {
                var btn = document.getElementById('sticky-menu-btn');
                var overlay = document.getElementById('flyout-menu-overlay');
                var closeBtn = document.querySelector('.flyout-menu-close');
                
                // Open menu
                btn.addEventListener('click', function() {
                    overlay.classList.add('active');
                    btn.classList.add('hidden');
                    document.body.style.overflow = 'hidden'; // Prevent body scroll
                });
                
                // Close menu
                closeBtn.addEventListener('click', function() {
                    overlay.classList.remove('active');
                    btn.classList.remove('hidden');
                    document.body.style.overflow = ''; // Restore body scroll
                });
                
                // Close on overlay click outside menu
                overlay.addEventListener('click', function(e) {
                    if (e.target === overlay) {
                        overlay.classList.remove('active');
                        btn.classList.remove('hidden');
                        document.body.style.overflow = '';
                    }
                });
            })();
        </script>
        
        <?php
    }
    add_action('wp_footer', 'custom_sticky_menu_button');
    

    Adjust the image, menus, and page IDs to suit.

    Best regards,
    Mike

    #1493971

    Topic: Pop Up Maker

    in forum Enfold
    condonp
    Participant

    Dear Sirs,

    I am using Gravity forms and thay recommend popup maker plugin. I have therefore created a pop up with the form embedded using avia layout builder and using the button in the content elements tab. I have set up a popup called Brochure Website with the gravity form embedded with a css class of popmake-5288 but cant seem to get this to work. I have also added some php from another enfold forum see below but if even if I add this on a text block the popup short code to be selected but and when I select brochure website it wont save the trigger from here?

    Please note I have added this also

    Can you help

    Code now in functions php

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
    $supported_post_types[] = “popup”;
    return $supported_post_types;
    }
    add_filter(‘avf_alb_supported_post_types’,’avf_alb_supported_post_types_mod’, 10, 1);

    function my_custom_exec_sc_only( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake )
    {
    /**
    * Return if true – Enfold already requested an execution because of preview in backend
    * Otherwise this is likley to be false.
    */

    if( true === $exec_sc_only )
    {
    return $exec_sc_only;
    }

    return true;

    /**
    * Make your checks here – make sure to return boolean true if you want to force execution
    *
    * Following is an example to allow it for all ajax calls.
    */

    if( defined( ‘DOING_AJAX’ ) && DOING_AJAX )
    {
    return true;
    }

    return $exec_sc_only;
    }

    add_filter( ‘avf_alb_exec_sc_only’, ‘my_custom_exec_sc_only’, 10, 6 );

    #1493966

    Hey Ismael, thanks for your reply.
    What I mean is that in the Enfold version of the login screen there is a tiny stuff unser the field that is doind the revail password thing:
    https://www.awesomescreenshot.com/video/48386775?key=6b73c617bba3728fd0fbc925e8be1fe5
    It’s not recognizable at all.
    It should look like more as the default theme feature.
    The little strange button ist’s shown only in Enfold. Any other theme will have that eye on the fild as I was showing in my previous post.

    Thanks!

    #1493953

    Dear Sirs,

    I am using Gravity forms and thay recommend popup maker plugin. I have therefore created a pop up with the form embedded using avia layout builder and using the button in the content elements tab. I have set up a popup called Brochure Website with the gravity form embedded with a css class of popmake-5288 but cant seem to get this to work. I have also added some php from another enfold forum see below but if even if I add this on a text block the popup short code to be selected but and when I select brochure website it wont save the trigger from here?

    Can you help

    Code now in functions php

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
    $supported_post_types[] = “popup”;
    return $supported_post_types;
    }
    add_filter(‘avf_alb_supported_post_types’,’avf_alb_supported_post_types_mod’, 10, 1);

    function my_custom_exec_sc_only( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake )
    {
    /**
    * Return if true – Enfold already requested an execution because of preview in backend
    * Otherwise this is likley to be false.
    */

    if( true === $exec_sc_only )
    {
    return $exec_sc_only;
    }

    return true;

    /**
    * Make your checks here – make sure to return boolean true if you want to force execution
    *
    * Following is an example to allow it for all ajax calls.
    */

    if( defined( ‘DOING_AJAX’ ) && DOING_AJAX )
    {
    return true;
    }

    return $exec_sc_only;
    }

    add_filter( ‘avf_alb_exec_sc_only’, ‘my_custom_exec_sc_only’, 10, 6 );

    #1493793

    Hi,
    Try removing this part of the css above from the end:

    #top .header_color .av-hamburger-inner,
      #top .header_color .av-hamburger-inner::before,
      #top .header_color .av-hamburger-inner::after {
        background-color: var(--enfold-header-color-button-font);
      }

    and add this css:

    @media only screen and (max-width: 767px) {
        .responsive:not(.html_header_transparency) #top #main {
            padding-top: 80px !important;
        }
    }

    Best regards,
    Mike

Viewing 30 results - 1 through 30 (of 11,204 total)