Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1310929

    Any word on the update?
    Is it safe to upgrade?

    Thanks.

    #1310940

    I just updated to 5.8 and it’s working fine.

    #1311300

    Hi peterolle,

    We haven’t had any reports of problems yet, and I can’t see any problems running 5.8 on a local installation. If you want to play it safe, then please update on a staging version of the site first.

    Best regards,
    Rikard

    #1312233

    I am being forced to use “block widgets” and getting this error

    “The “avia_google_maps” block was affected by errors and may not function properly. Check the developer tools for more details.”

    on my widgets page after upgrading to 5.8. Occurs on multiple sites. I have to install the ‘classic widget’ plugin to fix…

    #1312595

    Hi nancy2434,

    Please try this in your functions.php file to enable the old widget layout:

    /**
    * 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 you can try running this plugin: https://wordpress.org/plugins/classic-widgets/

    Best regards,
    Rikard

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