Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1494809

    hi, I renewed the token and entered it on the site, everything seems fine, it works well but it doesn’t notify me of theme updates, my theme is version 7.1.3 but it gives me problems with wordpress 6.9.1, can you help me please

    #1494810

    since I updated wordpress I have many errors and I don’t know what to do

    #1494820

    Hi,

    Did you try to temporarily deactivate all plugins or any custom code that you might have added? Did you try updating your PHP version? Did you check your WordPress debugging settings? https://wordpress.org/support/article/debugging-in-wordpress/

    Best regards,
    Rikard

    #1494824

    I tried everything but it doesn’t work, will you release a new version fixing the errors?

    #1494870

    Hi,

    Thank you for inquiry.

    The notices shown in your screenshot are not fatal errors, so they shouldn’t affect the site in any way. To hide them from the dashboard, you’ll need to edit the wp-config.php file and add the following code:

    
    define( 'WP_DEBUG', false );
    define( 'WP_DEBUG_DISPLAY', false );
    

    Please make sure there are no duplicate entries of these lines in the file.

    Best regards,
    Ismael

    #1494882

    yes of course I’ve already done it, but I would love to have a theme that doesn’t give errors!!!!

    #1494888

    Hi,

    We cannot reproduce the notices in your screenshot, and we haven’t had reports of any other users having the same problem as you. None of the references are pointing to Enfold files either. How can we reproduce the results that you are seeing on your end?

    Best regards,
    Rikard

    #1494891

    Hi Rikard,

    the notices I reported are directly related to Enfold and the Avia builder. The handles involved — avia-module-team, avia-module-testimonials, avia-module-timeline, avia-module-video, avia-module-audioplayer, avia-module-contact, avia-shortcodes, avia-layout — all belong to your theme.
    So the statement “none of the references point to Enfold files” is not accurate.

    WordPress 6.9.1 introduced stricter checks for unregistered dependencies, and your modules are triggering exactly those warnings. The fact that WordPress displays the notice inside wp-includes/functions.php simply means WP is catching the incorrect enqueue; it does not mean the issue originates in WordPress core.

    To be clear:

    WordPress is fully updated

    Enfold is fully updated

    The notices appear even with all non-essential plugins disabled

    The issue occurs in the backend page editor

    Every handle mentioned is part of Enfold/Avia

    Given this, I need a concrete technical check on your side:
    can you verify whether Enfold is properly registering the dependencies avia-layout and avia-shortcodes before they are enqueued?
    The warnings indicate that these dependencies are not registered at the time your modules attempt to use them.

    I’m expecting a more precise technical follow-up, because the issue is reproducible and clearly tied to components of the theme.

    Thank you.

    #1494895

    Hi,

    Thanks for the update. We haven’t been able to reproduce anything like what you are experiencing since the current version was released. If you need further help, then we would need access to your site and further instructions on how to reproduce the results that you are seeing.

    Best regards,
    Rikard

    #1494969

    OK, I’ll leave you the login details here? at this moment I have disabled debugging from the wpconfig file, tell me if I need to re-enable debugging

    #1494976

    Hi,

    Yes please, you can post the login details in the private content box. The details will only be available to moderators.

    Best regards,
    Rikard

    #1494994

    ecco i dati per entrare grazie

    #1495019

    Hi,

    Thanks for that. I’ve notified our developers about this and they will take a closer look at it.

    Best regards,
    Rikard

    #1495094

    is there any news?

    #1495185

    Hi,

    To get rid of the notices temporarily, you can add the following code to the functions.php file:

    add_action( 'wp_enqueue_scripts', function() {
      if ( ! wp_style_is( 'avia-layout', 'registered' ) ) {
          wp_register_style( 'avia-layout', false );
      }
    }, 5 );

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.