White Label
To disable the "Artware" part of the theme, you can use the code below:
// White Label
function remove_artware_dashboard_widget() {
remove_meta_box('artware_dashboard', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'remove_artware_dashboard_widget', 11);
function disable_custom_menu_page_removing() {
remove_action('admin_menu', 'custom_menu_page_removing', 99);
}
add_action('admin_menu', 'disable_custom_menu_page_removing', 1);