Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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.

    Screenshot 1

    Screenshot 2

    #1312159

    Same here.
    Widget Error with last WP Update

    Thanks for your help on this.

    #1312567

    Hi,

    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,
    Rikard

    #1312584

    Yep the patch fixed it – thanks

    #1312630

    Hi all,

    Thanks for your quick reaction.

    Have a nice day,

    With kind regards,

    Pascal

    #1312953

    Hi,

    Great, I’m glad that you got it working, and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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