Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1311633

    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

    #1311636

    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

    #1311638

    Nvm i used the disable widget to get it back lol… not sure how that got changed

    #1311639

    Hi,

    It was introduced in WordPress 5.8. Glad you figured it out though!

    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Widget section changed’ is closed to new replies.