function plt_hide_licenses_manager_for_woocommerce_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "QuadLayers News" widget.
remove_meta_box('wp-dashboard-widget-news', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_licenses_manager_for_woocommerce_dashboard_widgets', 20);