function plt_hide_metform_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Wpmet Stories" widget.
remove_meta_box('wpmet-stories', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_metform_dashboard_widgets', 20);