-
AuthorPosts
-
July 25, 2021 at 12:41 am #1312130
Seems I am seeing Widget issues since the latest updates. WHen I go to that new widget block interface it states that the newsbox has issues – It is the Enfold Latest News widget.
The “newsbox” block was affected by errors and may not function properly. Check the developer tools for more details.It will not allow be to remove it – Well a better description is it claims to be removed in the UI but also states when trying to update the page and push the changes:
There was an error. The response is not a valid JSON response.
July 25, 2021 at 6:52 am #1312159Same here.
Thanks for your help on this.
July 27, 2021 at 5:11 am #1312567Hi,
Sorry for the problem, and for the late reply. We released a bug fix version yesterday (4.8.5), could you try updating to that please? https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update
If you are running WordPress 5.8 then the widget layout has changed in that version. If you want to switch to the previous layout, then please try this in 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 install the Classic Widgets plugin: https://wordpress.org/plugins/classic-widgets/
Best regards,
RikardJuly 27, 2021 at 5:48 am #1312584Yep the patch fixed it – thanks
July 27, 2021 at 8:32 am #1312630Hi all,
Thanks for your quick reaction.
Have a nice day,
With kind regards,
Pascal
July 28, 2021 at 8:08 am #1312953 -
AuthorPosts
- You must be logged in to reply to this topic.