Viewing 30 results - 1 through 30 (of 7,500 total)
  • Author
    Search Results
  • #1496714

    It could be a problem of font-display settings:
    If you have activated the option to load the fonts by swap – then it might be neccessary to exclude those icon-font files from that.
    it ist found on : Enfold Child – Performance – Show Advanced Options – Custom Font Display Behaviour.

    To exclude – put this to your child-theme functions.php:

    function my_custom_font_display( $font_display, $font_name ){
      // List of all icon fonts that are not allowed to “swap”
      $icon_fonts = array( 
        'entypo-fontello', 
        'entypo-fontello-extra', 
        'medical', // your custom icon-font files names
        'numbers',
        '3d-icons',
      );
    
      // Check whether the font name contains any of the icon terms (wildcard search)
      foreach( $icon_fonts as $icon_font ) {
        if ( strpos( $font_name, $icon_font ) !== false ) {
          return 'block';
        }
      }
    
      // Fallback for all other custom fonts from Enfold
      if( strpos( $font_name, 'avia-module-custom-font' ) !== false ) {
        return 'block';
      }
    
      return $font_display;
    }  
    add_filter( 'avf_font_display', 'my_custom_font_display', 10, 2 );

    this will then generated:

    Hey diefleischerei,

    Are you looking to password protect the whole site? If so, then there’s no functionality for that in Enfold unfortunately. Please try searching for a plugin in the WordPress plugin repository.

    Best regards,
    Rikard

    #1496578

    Hey kpamela24,
    I see that your WordPress site health is also not loading. I see that you have a Search Replace plugin, perhaps using this broke something. Try resetting your site and do a fresh install of WordPress & Enfold to see if this works. If so try the Duplicator plugin to migrate from your localhost to your server.

    Best regards,
    Mike

    Quazione
    Participant

    Hello Kriesi Support Team,

    We encountered a critical issue while working within the Enfold theme and are seeking guidance on recovery.

    What happened:

    • We were troubleshooting an issue where the Enfold theme was not updating properly.
    • During this process, we clicked the “Reset” button, assuming it would clear cached/token-related data.
    • Instead, this action reset/deleted all Enfold theme options globally.

    Current situation:

    • All Enfold theme settings (layout, styling, header, footer, etc.) have reverted to defaults.
    • All media files disappeared immediately after the reset.
    • We do not have a direct export/backup of the Enfold theme options.
    • We do have a full website backup in .zip format.

    What we have already checked:

    • Searched the backup archive for Enfold-related configuration or option files.
    • Reviewed wp-content (themes, uploads, etc.) but did not find identifiable option storage files.
    • Looked for database-related content expecting to find theme settings (e.g., wp_options entries), but could not locate a usable database or clearly identifiable Enfold settings.

    What we need help with:

    1. Are Enfold theme options stored in the WordPress database (wp_options) or in files?
    2. If stored in the database, what specific option names or prefixes should we look for (e.g.,avia_*)?
    3. Can theme options be restored from a backup without restoring the entire site?
    4. From a full .zip backup, which specific files or database tables are required to restore Enfold settings?
    5. Any guidance on recovering the missing media files would also be appreciated.

    Important feedback:

    • The “Reset” button appears to reset all global theme options without a clear warning of the full impact.
    • This behavior is extremely destructive in a production environment.
    • We strongly recommend:
      • Moving this function to a separate, clearly labeled section, and/or
      • Adding a prominent confirmation warning explaining that ALL theme settings will be permanently reset.

    This action resulted in a complete loss of configuration and media unexpectedly, so any assistance in recovery would be greatly appreciated.


    Thank you;
    Armen

    #1496491

    Hey khickman,

    Thank you for the inquiry.

    The search element in Enfold should display results directly below the search field without redirecting to a separate page. When you press enter or click the search icon, it should redirect to the search results page and show the results without any 403 errors.

    The 403 error probably indicates a server permissions issue or a conflict with your server configuration. We recommend reaching out to your hosting provider and ask them to check for any server-side restrictions or security rules that might be blocking the search requests. Mention that you’re getting a 403 Forbidden error when submitting search queries.

    Also check if you’ve made any recent modifications to your search field or added any custom code related to the search functionality. If so, try to temporarily remove those changes to see if the issue resolves. If you’re using any security plugins like Wordfence or iThemes Security, try temporarily disabling them to see if they’re blocking the search requests.

    Let us know the result.

    Best regards,
    Ismael

    #1496202

    In reply to: Upgrading to php 8.1

    Hey webzies,

    Thank you for the inquiry.

    It looks like the critical error is caused by the create_function() in your child theme. This function was deprecated in php 7.2 and completely removed in PHP 8.0, which is why switching to PHP 8.1 triggers a fatal error.

    You’ll need to replace any instances of create_function() in your child theme. Since this change is in your child theme and not Enfold core, you’ll need to make those updates yourself. You can search your child theme files for “create_function” to locate all instances.

    Let us know if the issue persists after making those changes.

    Best regards,
    Ismael

    #1496091

    Hi,

    Thank you for the inquiry.

    Regarding the logo shrinking on smaller screens and the burger menu/search icon overlapping, you can add the following css to Enfold > General Styling > Quick CSS field:

    
    @media only screen and (max-width: 1290px) {
      .responsive #top .logo img {
        max-width: 62%;
      }
    
      #avia-menu {
        margin-right: 0;
        padding-right: 0;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top .logo img {
        max-width: 35%;
      }
    }
    

    Adjust the max-width value as needed to fit your logo within the header. Please make sure to purge the cache before testing.

    qVl8kmu.md.png

    Let us know if the issue persists.

    Best regards,
    Ismael

    #1496089

    Hey jpassmann,

    Thank you for the inquiry.

    The demo images bundled with Enfold may or may not include a license for use on live websites — it varies by image. We cannot guarantee that any of them are safe to use publicly.

    The safest course of action is to replace all demo images with your own. There are several royalty-free sources you can use:

    https://unsplash.com
    https://www.pexels.com
    https://pixabay.com

    If you still want to check the origin of a specific image first, you can do a reverse image search to find the source and confirm its license terms:

    https://images.google.com
    https://tineye.com

    We tried checking your site but it redirects to a 404, so we were unable to verify which image you are referring to.

    Let us know if you have more questions.

    Best regards,
    Ismael

    #1496027

    Hi Mike,
    Thank you very much for your reply.
    I’ve installed the same search function on five other pages.
    Everything was working fine until a few days ago.
    And I was able to open the galleries on mobile exactly the same way—
    just like on the desktop.
    I would “Auswählen” the dropdown, choose the desired gallery, press OK, and then click Search.
    No updates have been applied to the script.
    Only WordPress and Enfold.

    I installed the same search function on the page linked below:
    It works fine on desktop, but doesn’t open on mobile.

    Is there anywhere I can download an older version of Enfold Child?

    Thanks and best regards,
    Franz

    #1495989

    Sorry about that.
    Since the main page (first link)
    is currently under heavy revision, I’ve created a new link.
    See below.
    Thanks, best regards, Franz

    There is a search function on this page:
    Link below:
    It works perfectly on the desktop.
    Until a few days ago, it was also working fine on mobile. I don’t know if there was a change due to the WordPress update or the Enfold theme update,
    but in any case, I can no longer click on the dropdown on mobile.

    https://img.savvyify.com/
    Is this page no longer working?

    #1495986
    schweg33
    Participant

    There is a search function on this page:
    Link below:
    It works perfectly on the desktop.
    Until a few days ago, it was also working fine on mobile. I don’t know if there was a change due to the WordPress update or the Enfold theme update,
    but in any case, I can no longer click on the dropdown on mobile.

    Thanks for the info,
    Best regards,
    Franz

    https://img.savvyify.com/
    Is this page no longer working?

    Dan2275
    Participant

    Hallo zusammen,

    ich bekomme beim Versuch den Envato Token zu validieren (Enfold Theme; Update Bereich) die Fehlermeldung:

    Das letzte Mal, als wir deinen Schlüssel überprüft haben, konnten wir keine Verbindung zu Envato herstellen:

    Auf Einkäufe konnte nicht zugegriffen werden
    Auf Benutzername konnte nicht zugegriffen werden (wird nur zu deiner Information benötigt)
    Auf E-Mail konnte nicht zugegriffen werden (wird nur zu deiner Information benötigt)
    Es traten folgende Fehler auf:

    Einkäufe: Fehlercode 403 von Envato erhalten: Forbidden:
    – response_code: 403
    – reason: scope-missing
    username Fehlercode 403 von Envato erhalten: Forbidden:
    – code: not_authenticated
    email Fehlercode 403 von Envato erhalten: Forbidden:
    – code: not_authenticated
    Einkäufe: Auf deine Einkäufe kann nicht zugegriffen werden Es kann nicht geprüft werden, ob Aktualisierungen vorliegen.

    Bei der Erstellung des Schlüssels wurden folgende Punkte aktiviert:

    View and search Envato sites
    Download your purchased items
    Verify purchases you’ve made

    Hat jemand eine Idee wie ich den Schlüssel aktivieren kann. Möchte Enfold nicht regelmäßig manuell aktualisieren.

    Parent Theme (Enfold) Versionsnummer ist 7.1.3
    PHP-Version: 8.4.18

    Danke euch im Voraus!

    Dan

    PS: Hat sich erledigt; waren noch drei weitere Optionen bei der Erstellung des Tokens notwendig.

    #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?

    #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

    #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

    Hi,

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

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

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

    Thanks!

    Best regards,
    Ismael

    #1495073
    Claudia Aschauer
    Guest

    Dear Kriesi Team,
    I hope you are doing well.
    In 2020, I purchased the Enfold Theme and installed it on our website. I recently tried to update the theme, but unfortunately I was unable to do so. I checked my Envato/Themeforest account, but I cannot find the purchase there. I also searched through all my emails and documents but could not locate the purchase code.
    Could you please check your database and help me recover the purchase information?
    My Envato account has been active since September 2020, so the purchase should have been made around that time.
    Thank you very much in advance for your support. I appreciate your help.
    Kind regards,
    Claudia Aschauer

    #1494999

    Thank you!

    It worked!
    But something crazy happened at the same time after I added that CSS to the wusicj CSS inside Enfold settings.
    The search feature that worked fine in the sidebar is now broken.
    https://snipboard.io/JywQFg.jpg
    https://snipboard.io/YQ8Kqy.jpg

    The sidebar search feature works fine when I delete the CSS, but the menu-top search widget goes back to the top like yesterday…
    https://snipboard.io/HATeMP.jpg

    Help me ;)
    Leo

    #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

    Roberta
    Participant

    Hi Enfold Support Team,

    We’re running into an issue where the 2025 accordion on this page is not working:
    https://wearesrna.org/shaping-the-future/research/funded-research-publications/

    The toggle items don’t show at all in both the Avia preview and the front-end, with no clear trigger. It also seems random which toggles disappear.

    What we’ve tried so far (no change):
    • Checked whether special characters were causing issues (removed/adjusted)
    • Reviewed the content inside the toggles for anything unusual
    • Rebuilt the accordion and created a brand-new one
    • Still seeing the same behavior (missing toggles)

    Could you please take a look on your side? We’d really appreciate it, as this section is currently blocking updates.

    Thank you in advance.

    Best,
    Roberta

    #1494777

    Hey promosapien,

    Thank you for the inquiry.

    After reimporting the icons, have you tried performing a search and replace in your database? Also, instead of just deleting the zip files, you may need to remove them from Enfold > Import/Export > SVG Iconset and Iconfont Manager before reuploading the icons. After that, you may also need to reconfigure the pages to use the new icon set.

    fbxPCml.md.png

    Best regards,
    Ismael

    #1494776

    Hey Akhurst,

    Thank you for the inquiry.

    You can insert a widget area in the header and add a Search widget to it. Please check this documentation for more info: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    #1494327
    christina495
    Participant

    Hi,
    I would like to indivdualize the shop page with the layout builder, but this is deactivated on the page. We use WooCommerce. We would like to have an additional Menu, like a submenu for the brands and a sidebar-menu, which has a tree structure, but left-aligned. Is this possible with Enfold?

    Similar like you have it here: https://kriesi.at/themes/enfold-2017/shop/custom-shop/

    I write you, because I couldn’t find anything in the forum and unfortunately I have a deadline and some pressure to finish the shop, so no time to do a lot of research.

    Thank you!

    • This topic was modified 2 months, 2 weeks ago by christina495.
    • This topic was modified 2 months, 2 weeks ago by christina495.
    #1494239

    Hi Mike,

    Both IPv4 and IPv6 are whitelisted.
    Please take a look and let me know.

    If you are able to access, the most urgent thing to resolve is that the product page sidebar moved to the left like all other pages.
    Ismael sent me those 2 steps (PHP and quick CSS), but the PHP is not running properly.

    https://snipboard.io/iBH6VE.jpg

    Also, after you told me that the sidebars/Woo filters won’t work on our home page, I’ve downloaded a Mega Menu plugin to bring all the categories and search filters to the home page. But … I can’t bring them up as a menu within the same design/location we have, using the Enfold theme default menu placement. It always shows underneath the header. It would be awesome if we could have the same look and feel.

    Online Shop: https://snipboard.io/Yw6hGR.jpg
    Akhurst global site: https://snipboard.io/KlMEuG.jpg

    You’ll notice that we use a code snippets plugin to store all the specific code for each site, as we run our sites on a multisite platform.
    The website is 99% done, and I think you can help me get it done once and for all ;)

    https://snipboard.io/kaFzCy.jpg

    Thank you so much!
    Leo

    This reply has been marked as private.

    Hi Mike,

    Thank you for looking into this and for making those adjustments in both the WordPress General Settings and the Enfold Theme Options.
    I will go ahead and request a crawl via Google Search Console now. I’ll keep an eye on it over the next few days and let you know if the favicon updates as expected.

    Best regards, Jodys

    Hi,
    Under WordPress > General Settings > Site Icon you had no image chosen, so I picked one for you which was your 512px by 512px png favicon. WordPress now shows that it is picked:
    fULwcUQ.png
    Then I changed your Enfold Theme Options > Favicon to your real favicon.ico from your root directory instead of the png image:
    fULQtWb.png
    I believe this should  help, now you need to try going to your Google Search Console and request that your site is crawled again, which may take a few days, once Google Search Console says it has been crawled, check again.

    Best regards,
    Mike

    Hi Ismael,

    Thank you for your feedback.

    I followed your advice: I have completely removed the custom code and I am now using only the Enfold Theme Options field with a 512x512px PNG file.

    Regarding your question: I have tried using a standard .ico file in the past, but the result was the same. As you noticed, the icon is visible in browser tabs and detected by validators, but it still fails to appear correctly in Google Search results (where the default WordPress globe icon is often shown instead).

    You mentioned that you found some markups not generated by the theme that might be conflicting. Hoping this helps more people here on the forum, could you please point out which specific lines of code or which files/plugins are generating these markups? This would be extremely helpful so I can remove them and leave only the theme’s default favicon output.

    I want to make sure the site’s head is “clean” to allow Google to crawl the correct icon.

    Best regards, Jody

    Hi Ismael,

    I am writing to update you on the situation. Unfortunately, even after following your last suggestion (removing the custom code and using only the Enfold Theme Options field with a 512x512px PNG), the favicon is still not appearing in the Google SERP.

    It has been two weeks since the last change, and I have also requested a fresh indexing via Google Search Console, but the default globe icon remains.

    Since I have already:

    Used the Enfold built-in favicon field.

    Verified that the file is accessible in the root directory.

    Cleared all caches (Litespeed and server-side).

    Checked that the site is correctly validated by external favicon checkers.

    Is there anything else we can check? Could there be a specific meta tag generated by the theme that might be conflicting, or perhaps a suggestion on how to make the favicon “more attractive” specifically for the Google Bot crawler?

    I would really appreciate any further technical insight you might have.

    Best regards, Stefano

Viewing 30 results - 1 through 30 (of 7,500 total)