Tagged: block editor, Widget
This is a first for me using the theme but the widget area changed now you can’t add more widget areas. Looks like a block format now. Not sure what happened for it to change. here is the link to the image.
Google Drive
Hi,
Please add following code to bottom of Functions.php file in Appearance > Editor
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' );
}
Cheers!
Yigit
Nvm i used the disable widget to get it back lol… not sure how that got changed