Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1314471

    Hi,
    i am making a new webside and just saw that the widget area looks totally different.
    ++++
    Der Block „portfoliobox“ ist von Fehlern betroffen und funktioniert möglicherweise nicht richtig. Bitte prüfe für weitere Details die Entwicklungswerkzeuge.
    Der Block „avia_fb_likebox“ ist von Fehlern betroffen und funktioniert möglicherweise nicht richtig. Bitte prüfe für weitere Details die Entwicklungswerkzeuge.
    ++++

    The “portfoliobox” block is affected by errors and may not work properly. Please check the development tools for more details.
    The “avia_fb_likebox” block is affected by errors and may not work properly. Please check the development tools for more details.

    You know what i can do?

    Many greetings
    rixi

    #1314812

    Hey rixi,

    Please add this to your functions.php file:

    /**
    * With WP 5.8 block editor was introduced to widget page. This is currently not supported by Enfold.
    * Based on https://wordpress.org/plugins/classic-widgets/ we disable this feature.
    *
    * If you want to use the new widget page and use a child theme add in functions.php of the child theme:
    *
    *		$avia_config['use_block_widget_page'] = true;
    *
    * @since 4.8.4.1
    */
    if( ! isset( $avia_config['use_block_widget_page'] ) || $avia_config['use_block_widget_page'] !== true )
    {
     // Disables the block editor from managing widgets in the Gutenberg plugin.
     add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
    
     // Disables the block editor from managing widgets.
     add_filter( 'use_widgets_block_editor', '__return_false' );
    }

    Or try installing this plugin: https://wordpress.org/plugins/classic-widgets/

    Best regards,
    Rikard

    #1314814
    This reply has been marked as private.
    #1315088

    Hi,

    I’ve added the code for you, please review your site.

    Best regards,
    Rikard

    #1315101

    Hi Rikard,
    perfecttttt!!!!! Thanks a lot!!!!

    Have a nice sunday,
    rixi

    #1315216

    Hi,

    Great, I’m glad that we could help. I’ll go ahead and close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘widget area is not working’ is closed to new replies.