Disable block editor support for widgets in the Astra theme.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'after_setup_theme', 'astra_remove_theme_support' );
function astra_remove_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}