Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1314008

    Widgets only able to be edited using block editor, not Avia. Also, cannot seem to update to latest Enfold theme version. When I try to update, I get this message : No Updates available. You are running the latest version! (4.8.3). But the latest version, as of this date, is 4.8.6.

    #1314311

    Hey throwmeapeanut,

    This code is included in the latest version of the theme, but you can add it to your functions.php file until you get the theme updated:

    /**
    * 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' );
    }

    As for the missing updates; please try to install and configure this plugin: https://envato.com/market-plugin/

    Best regards,
    Rikard

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