-
AuthorPosts
-
August 4, 2021 at 8:22 pm #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
rixiAugust 6, 2021 at 11:04 am #1314812Hey 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,
RikardAugust 6, 2021 at 11:24 am #1314814This reply has been marked as private.August 8, 2021 at 5:24 am #1315088August 8, 2021 at 8:45 am #1315101Hi Rikard,
perfecttttt!!!!! Thanks a lot!!!!Have a nice sunday,
rixiAugust 9, 2021 at 6:27 am #1315216 -
AuthorPosts
- The topic ‘widget area is not working’ is closed to new replies.