Viewing 30 results - 31 through 60 (of 16,887 total)
  • Author
    Search Results
  • #1495800

    In reply to: Enfold

    Hey Pam Miller,

    Thank you for the inquiry.

    The server should have PHP version 8.0 or later to be compatible with the latest version of the theme, 7.1.4. You can download the latest version of the theme from your Themeforest account. After retrieving the latest version, you may need to manually install or upload it to your server via S/FTP. Please check the link below for more info.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    #1495794

    Topic: Enfold

    Pam Miller
    Guest

    I have Enfold on a site that was designed a long time ago. I am not sure what account it was purchased under but now stuck with PHP 7.4 until it is upgraded. Do we need to buy a new version or is there an upgrade version.

    #1495785

    In reply to: italic font – why

    aber du siehst im DOM schon das dort p-tag em-tag strong-tag dann dein span-tag.
    im Anderen eben nicht
    wenn du im Bearbeitungsmodus bist – klicke mal oben rechts den Code-Modus an- was siehst du da?


    EDIT:
    Aber du hast Recht. Deine Ganze seite ist mit meist leeren <em></em> tags übersäht. Daher muss das an etwas anderem liegen.
    Hast du einträge in deiner child-theme functions.php?

    #1495756

    Hi,

    Thank you for the info.

    In the enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php file, please look for this code around line 217:

    //set up loading of assets. wait until post id is known
    add_action( 'wp', array( $this, 'extra_asset_check' ) , 10 );
    

    Replace it with:

    //set up loading of assets. wait until post id is known
    add_action( 'wp_enqueue_scripts', array( $this, 'extra_asset_check' ) , 20 );
    

    Let us know if the issue persists.

    Best regards,
    Ismael

    #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);
    nebuddlho
    Participant

    Hi,

    We are running Enfold 7.1.4 on PHP 8.4.17 and are experiencing a critical bug where the Advanced Layout Builder silently truncates page content on save.

    Root cause identified: Enfold’s save routine sometimes strips closing tags when writing to _aviaLayoutBuilderCleanData postmeta. This creates unclosed tags in the stored data. On subsequent saves, Enfold’s shortcode parser encounters the unclosed tag and only processes/saves the content up to that point — everything after is silently deleted.

    Reproduction:

    Create a page with multiple textblocks containing bold text ()
    Edit and save the page several times in the visual ALB editor
    Check _aviaLayoutBuilderCleanData in the database — some closing tags are missing
    Save the page again — all content after the unclosed tag is deleted

    Evidence from our site:

    Post 152: 154 shortcode elements reduced to 16 on save (94,643 → 15,929 bytes). Cause: unclosed tag at position 8311 in cleandata.
    Post 1688: 7 unclosed
    tags found in cleandata, all introduced by the save routine.
    Post 14: post_content had balanced tags but _aviaLayoutBuilderCleanData had unclosed
    — proving the save routine is stripping the closing tag.
    Key observation: The visual editor shows the content correctly with proper bold formatting. The
    is present in the editor. But after save, _aviaLayoutBuilderCleanData is missing the closing tag. This means the bug is in Enfold’s content processing/save pipeline, not user error.

    Workaround: We are manually fixing the database by adding the missing tags to both post_content and _aviaLayoutBuilderCleanData, but the problem recurs on every edit.

    Request: Please investigate the ALB save routine that processes HTML within textblocks and ensure (and other closing tags) are preserved when writing to _aviaLayoutBuilderCleanData.

    Thank you.

    #1495734

    Okay, not recommended, but suggested ;-) If no caching plugin is installed, the Enfold theme displays the following message in the Performance tab:

    We couldn’t detect any active caching plugin. It is recommended to use one to speed up your site. Here are a few suggestions:

    No matter what I do, when the Super Cache plugin is active, I can’t save the theme. The following error occurs:

    AH01071: Got error 'PHP message: PHP Fatal error: Uncaught Error: Call to undefined function get_blog_option() in /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/plugins/wp-super-cache/wp-cache-phase2.php:820\nStack trace:\n#0 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/plugins/wp-super-cache/wp-cache-phase2.php(3079): get_supercache_dir()\n#1 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/themes/enfold/includes/config-enfold/functions-framework.php(215): wp_cache_clear_cache()\n#2 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(341): avia_force_clear_caches()\n#3 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#4 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/plugin.php(522): WP_Hook->do_action()\n#5 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/themes/enfold/framewo...', referer: https://wordpresstest.xxxxxxxxxxxx.xx/wp-admin/admin.php?page=avia

    I understand that the error is related to the super cache plugin. But when I reset the theme from 7.1.4 to 7.1.3, everything works fine. To me, it looks like a combination error between Enfold 7.1.4 and the super cache plugin.

    Regards,
    Bernd

    • This reply was modified 1 month ago by Bernd.
    • This reply was modified 1 month ago by Bernd.
    #1495697

    In reply to: Demo Note Installing

    This issue has been resolved. The problem was the version of PHP I reduced it from 8.4 to 7.4 and the demo installed

    #1495694
    Bernd
    Participant

    Hello

    After updating to 7.1.4, a WordPress error occurs:

    Ein Fehler vom Typ E_ERROR wurde in der Zeile 820 der Datei /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/plugins/wp-super-cache/wp-cache-phase2.php verursacht. Fehlermeldung: Uncaught Error: Call to undefined function get_blog_option() in /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/plugins/wp-super-cache/wp-cache-phase2.php:820
    Stack trace:
    #0 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/plugins/wp-super-cache/wp-cache-phase2.php(3079): get_supercache_dir()
    #1 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/themes/enfold/includes/config-enfold/functions-framework.php(215): wp_cache_clear_cache()
    #2 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(341): avia_force_clear_caches()
    #3 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()
    #4 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/plugin.php(522): WP_Hook->do_action()
    #5 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-content/themes/enfold/framework/php/auto-updates/class-avia-theme-data-updater.php(160): do_action()
    #6 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(341): aviaFramework\updates\Avia_Theme_Data_Updater->handler_update_version()
    #7 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()
    #8 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-includes/plugin.php(522): WP_Hook->do_action()
    #9 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-settings.php(764): do_action()
    #10 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-config.php(72): require_once('...')
    #11 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-load.php(50): require_once('...')
    #12 /var/www/vhosts/xxxxxxxxxxxx.xx/wordpresstest.xxxxxxxxxxxx.xx/wp-admin/admin.php(35): require_once('...')
    #13 {main}
      thrown

    If you reload the page, everything will be fine. However, you cannot save any changes in the theme anymore. Error:

    Saving didnt work!
    Please reload the page and try again

    Everything still worked fine with version 7.1.3.
    PHP: 8.3.30

    Regards
    Bernd

    Hi Rikard,

    Thank you for the guidance — it worked perfectly.

    For anyone else dealing with a similar situation (inherited project, large version gap like 4.5.7 → 7.1.x, no access to the original license), here’s what worked for us:

    1. Purchased a new Regular License on ThemeForest — no need to transfer the old one.
    2. Extracted the enfold.zip from inside the downloaded package (not the outer zip) and uploaded via FTP, replacing the old theme folder entirely.
    3. Registered the theme using a newly generated Envato Personal Token.
    4. WP Super Cache caused a Fatal Error (get_blog_option() undefined) when saving Enfold Options on PHP 8.3 / single-site installs. Replacing it with another plugin cache solved the issue completely.
    5. After the major version jump, any header.php or footer.php overrides in the child theme need to be updated from the new parent theme files — old versions will break footer rendering.

    Hope this helps someone going through the same process.

    Best regards,
    Jorge

    • This reply was modified 1 month ago by jorgeacebo.
    #1495609

    Hey Tilman,
    When I check your page the horizontal galleries behave as intended, clicking a image enlarges it until the next one is clicked. It’s true that they stay enlarged. If you want the image size to be restored after 5 seconds, try this function in your child theme function.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 code below and save.

    function restore_horizontal_gallery_size() { ?>
      <script>
    document.querySelectorAll('.av-horizontal-gallery-wrap').forEach(item => {
        item.addEventListener('click', function () {
            clearTimeout(this._galTimer);
            this._galTimer = setTimeout(() => {
                this.classList.remove('av-active-gal-item');
            }, 5000);
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'restore_horizontal_gallery_size', 99 );

    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 }
    #1495574

    Hi Guenni007, Thank you so much, as always for assisting me! I have added the code you provided in the link, your first response. It’s there now and I am still using an image with the video link, attempting to have it open in a lightbox. Unfortunately, it did not work. Might you have any suggestions ?

    My reason for not using the Video element is that the Preview/Fallback image gets cut off – it makes it horizontal, when the image is actually vertical.

    So my Child Theme functions.php file now looks like this, but the video still won’t open in a lightbox…. Might you have any additional suggestions?

    <?php
    function lightbox_with_mixed_content_type() {
    ?>
    <script type=”text/javascript”>
    window.addEventListener(“DOMContentLoaded”, function () {
    (function($){
    $(‘.mixed-contenttype a’).each(function(){
    var anchorLink = $(this).attr(‘href’);
    if (/\.(jpg|png|gif|webp|jpeg)$/.test(anchorLink)) {
    //console.log(anchorLink + ” is an image link”);
    } else {
    $(this).attr(‘rel’, ‘lightbox’).addClass(‘mfp-iframe’);
    }
    });
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘lightbox_with_mixed_content_type’, 999);
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    If you don’t think it’s possible to do this, I will make a horizontal image for the preview/fallback (doesn’t look quite as nice in terms of filling up the space), just thought I’d give it one more try.

    • This reply was modified 1 month, 1 week ago by Eleina_Shinn.
    #1495566

    there is one problem with your links on that masonry – the titles are often the same as the file-names
    your alt attribute is always the same for that gallery: 7106 Bluff Run

    Next : on the element itself – where you set the option to show lightbox images. – there is underneath a dropdown with an option what to show as bottom-bar text:

    But if you have forgotton to show this on multiple masonry galleries – then you can place a little snippet instead in your child-theme functions.php:

    function masonry_title_fix(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
            $('.av-masonry .lightbox-added').each(function(){
                var lin = $(this).attr('alt');  /* === or choose title here === */
                $(this).attr('title',lin);
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'masonry_title_fix');

    because you have the masonry perfect grid – you have no imgs inside but you can change it for the anchor tag.

    #1495563

    In reply to: Enfold Theme

    Hi,

    You can keep the old version just in case, you can rename the folder to enfold-old or something like that. When you can see that everything is working as it should, then it can be deleted.

    Please update the theme first, then the PHP version. The latest version of Enfold should work with 7.3, but since it’s an outdated version, we recommend that you use a more recent and supported version.

    Best regards,
    Rikard

    #1495559

    In reply to: Enfold Theme

    This reply has been marked as private.
    #1495542
    Erik
    Guest

    Hello,

    I am using Enfold Theme version 4.3.2. I purchased and downloaded the latest version from ThemeForest. I am also using Enfold Child Version: 1.0.

    Question: How do I update the theme now?

    Do I simply delete the enfold folder in “wp-content/themes”? Unfortunately, I couldn’t find any instructions on the website.

    Currently, PHP (7.3.33) is still running, and this also needs to be changed. I would like to take the intermediate step to 7.4 and then to 8.5. Is this possible with the Enfold Theme I am currently using?

    I would be grateful if you could help me.

    Best regards, Erik

    #1495519

    Your description of the whole thing is quite unclear.
    Which Enfold element did you use? Portfolio Grid? ( When I searched for avia_post_grid in the Enfold folder, I only found portfolio.php as an element with such an entry. )

    Then you selected “Open in Lightbox” for link handling.
    You can set the preview image size in the “Styling” tab – Grid settings:
    To do this, you must first select “Select the grid image size manually” under “Portfolio Grid Image Size”—a second drop-down menu will then open where you can specify the grid image size.

    Do you like to change something on the lightbox images – or the bottom-bar text?

    #1495458

    Hey spitsdesign,

    Thank you for the inquiry.

    What is the current version of the theme? Please make sure the theme is updated to version 7.1.4 and that the fonts are uploaded in zip format. You may also need to ask your hosting provider to enable the ZipArchive PHP extension. Let us know if the issue persists.

    Best regards,
    Ismael

    #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

    Jorge Acebo
    Guest

    Dear Kriesi / Enfold Team,

    I am writing a pre-sales inquiry regarding a WordPress project I have recently inherited. The site is currently running a very old version of Enfold (v4.5.7), but I do not have access to the original Envato account or the API Token used by the previous developer.

    I intend to purchase a new, independent license for this domain to ensure the site is legally covered and can receive the latest code updates.

    Before I complete the purchase, I have two technical questions:

    License Replacement: Since the site already has Enfold installed (v4.5.7), can I simply enter the new Token from my new license into the existing theme options to trigger the update, or do the licenses need to be “transferred” (which I cannot do without the old account)?

    Code Integrity: Given the huge version gap (4.5.7 to 6.x), would you recommend deleting the old /enfold/ theme folder and uploading the new version’s files via FTP to avoid conflicts between old and new PHP files?

    I want to do things the right way and ensure the site’s code is up to date. Thank you for your guidance.

    Best regards.

    #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

    #1495147

    Thanks again, I worked with Claude to get this script I could drop in the child theme functions file, so I don’t have to copy any of the files to the child theme — lmk if you think it’s a problem. With the script and css below I got everything looking and working as it was, but now with “buttons”. After all that work, I’m wondering (and should’ve asked earlier): Do you even agree the sorting items as links were an accessibility issue? If it all looks good to you, feel free to close this thread.

    /* JavaScript to convert sorting links to buttons */
    add_action('wp_footer', 'child_masonry_links_to_buttons', 999);
    function child_masonry_links_to_buttons() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            // Convert all masonry sort links to buttons
            $('.av-masonry-sort a[data-filter]').each(function() {
                var $link = $(this);
                var $button = $('<button type="button"></button>')
                    .attr('data-filter', $link.data('filter'))
                    .attr('class', $link.attr('class'))
                    .html($link.html());
                
                $link.replaceWith($button);
            });
            
            // Re-bind click events to buttons
            $('.av-masonry-sort').off('click', 'a').on('click', 'button', function() {
                var current = $(this),
                    linktext = current.html(),
                    selector = current.data('filter'),
                    masonry = current.parents('.av-masonry').eq(0),
                    container = masonry.find('.av-masonry-container').eq(0),
                    links = masonry.find('.av-masonry-sort button'),
                    activeCat = masonry.find('.av-current-sort-title');
    
                links.removeClass('active_sort');
                current.addClass('active_sort');
                container.attr('id', 'masonry_id_' + selector);
    
                if(activeCat.length) {
                    activeCat.html(linktext);
                }
    
                // Trigger isotope filtering
                var filters = selector ? {filter: '.'+selector} : {};
                filters['layoutMode'] = 'packery';
                filters['packery'] = {gutter:0};
                filters['percentPosition'] = true;
                filters['itemSelector'] = "a.isotope-item, div.isotope-item";
                filters['originLeft'] = $('body').hasClass('rtl') ? false : true;
    
                container.isotope(filters);
                
                setTimeout(function() { $(window).trigger('debouncedresize'); }, 500);
                return false;
            });
        });
        </script>
        <?php
    }
    /* sorting menu styling accessible buttons */
    .main_color .av-sort-by-term button {
        border: none;
        color: #fff;
        background: #0076a8;
        padding: 6px 15px 8px;
        text-transform: capitalize;
        font-size: 15px;
    	margin: 3px 3px 0 0;
      	font-family: 'sarabun',Helvetica,Arial,sans-serif;
    }
    .main_color .av-sort-by-term button:hover {
        background: #b6bd00;
    	transition: .25s;
    }
    .main_color .av-sort-by-term button.active_sort {
        color: #fff;
    	background: #b6bd00;
    }
    #1495130
    Leo
    Guest

    Dear,

    I have purchased the enfold wordpress site over 10 years ago. i have a problem with my child theme when i update the PHP to 8.3, i will get a critical error which i can’t resolve and manually im forced to switch it back to 7.4.

    I can’t find my license code anywhere so i’m trying this way how i can get support on this issue to solve it.

    Sincerely regards,

    Leo

    Hey michellea101,

    Thank you for the inquiry.

    Did you install any plugins or add any modifications recently? Please try to temporarily disable the plugins, then ask your hosting provider to upgrade PHP to version 8.2 or newer and increase the memory limit to at least 512MB. Also, make sure that the theme is updated to version 7.1.3. Let us know if the issue persists.

    Best regards,
    Ismael

    Hi Rikard

    Done that, same same – jumping up and down, only first button on page works.

    I am not a pro, but how about the PHP version to be updated? What else? Any workaround to be recommended to this issue?

    Die unten aufgeführten Optionen beziehen sich auf deine Serverkonfiguration. Wenn Änderungen erforderlich sind, benötigst du möglicherweise die Unterstützung deines Webhosting-Unternehmens.

    Server-Architektur Linux 6.8.0-85-generic x86_64
    Webserver Apache
    PHP-Version 7.4.33-nmm8 (Unterstützt 64bit-Werte)
    PHP-SAPI fpm-fcgi
    Maximale PHP-Eingabe-Variablen (max_input_vars) 10000
    Maximale PHP-Ausführungszeit (max_execution_time) 600
    PHP-Arbeitsspeichergrenze (memory_limit) 512M
    Maximale Eingabe-Zeit (max_input_time) -1
    Maximale Dateigröße beim Upload (upload_max_filesize) 512M
    Maximale Größe der PHP-Post-Daten (post_max_size) 512M
    cURL-Version 8.5.0 OpenSSL/3.0.13
    Ist SUHOSIN installiert? Nein
    Ist die Imagick-Bibliothek verfügbar? Ja
    Werden sprechende Permalinks unterstützt? Ja
    .htaccess-Regeln Individuelle Regeln wurden deiner .htaccess-Datei hinzugefügt.
    robots.txt Deine Website verwendet die dynamische robots.txt-Datei, die von WordPress generiert wird.
    Aktuelle Zeit 2026-02-13T07:38:40+00:00
    Aktuelle UTC-Zeit Friday, 13-Feb-26 07:38:40 UTC
    Aktuelle Serverzeit 2026-02-13T08:38:37+01:00

    Thank you.

    Philipp

    Hi,

    This is an example of a lightbox: https://www.dropbox.com/scl/fo/qjhvtprz88ek01b9z1y9l/APaoqg4LiLru_DNZg2JWNv0?dl=0&e=1&preview=This+image+is+NOT+displaying+as+original+size%2C+but+is+set+it+the+settings+to+be+OG+size.jpg&rlkey=n16cxl91f058axc21qpqzaukg

    Is that where the problem is? The image being displayed is not the full-size or original version? If that’s the case, then the avf_alb_lightbox_image_size filter we recommended above should help resolve the issue. We’ve added the code in the functions.php file and it’s working as expected. You can now see the original image displayed in the image modal or lightbox.

    q915f07.md.png

    Best regards,
    Ismael

    M1000000
    Participant

    We’re running Enfold 7.1.3 with WooCommerce on a SiteGround Cloud VPS and we’re seeing repeated database writes on every checkout page load that appear to be coming from Enfold’s per-post CSS management.

    Summary of the issue

    Our Checkout page is post ID 6494 (/checkout/).

    Enfold repeatedly executes an UPDATE against postmeta for this page:

    meta_key = ‘_av_css_styles’

    with serialized data including css_file = ‘post-6494.css’ and status = ‘no_css’

    The file post-6494.css is never created, despite Enfold generating other post-XXXX.css files normally.

    ——————————

    What we observe

    Enfold is successfully generating per-post CSS files in:

    wp-content/uploads/dynamic_avia/avia_posts_css/
    (multiple post-XXXX.css exist here, and the newest are generated today)

    An older legacy folder also exists:

    wp-content/uploads/avia_posts_css/
    (files exist, but last modified in 2023)

    post-6494.css does not exist in either location.

    Folder permissions are correct (directories 755, files 644).

    ——————————

    Query Monitor stack trace (from a frontend checkout request)

    UPDATE mjwp_postmeta
    SET meta_value = ‘… status:”no_css” … css_file:”post-6494.css” …’
    WHERE post_id = 6494
    AND meta_key = ‘_av_css_styles’

    update_metadata() wp-includes/meta.php:324
    update_post_meta() wp-includes/post.php:2746
    aviaPostCssManagement->update_meta() …/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php:557
    aviaPostCssManagement->check_create_file() …/class-post-css-management.php:268
    aviaPostCssManagement->handler_enqueue_post_styles() …/class-post-css-management.php:205
    do_action(‘wp_enqueue_scripts’) wp-includes/plugin.php:522

    ——————————

    Impact

    During traffic bursts to checkout, these repeated meta updates contribute to additional DB load and resource usage (we had an autoscale event during a checkout load spike). Even if Enfold decides the page should be no_css, it seems to be re-writing the meta repeatedly instead of persisting a stable state and moving on.

    ——————————

    Questions

    Is Enfold expected to generate a post-6494.css file for WooCommerce checkout pages?

    If not, is there a recommended way to prevent aviaPostCssManagement->handler_enqueue_post_styles() from continually updating _av_css_styles for checkout pages?

    Is this a known behavior/bug in the current Enfold/Avia CSS management layer when a page is treated as no_css?

    Are there settings (or a filter/hook) to disable per-post CSS management for specific post IDs or for is_checkout() pages?

    If you’d like, we can provide the full serialized _av_css_styles value and/or additional logs.

    Thanks!

    #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

Viewing 30 results - 31 through 60 (of 16,887 total)