I’ve figured it out. We need to add following lines to the functions.php file –>
function remove_dashboard_widgets() {
global $wp_meta_boxes;
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dlm_download_stats_widget’]);
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dlm_download_top_widget’]);
}
if (!current_user_can(‘manage_options’)) {
add_action(‘wp_dashboard_setup’, ‘remove_dashboard_widgets’ );
}
?>
??