The given code fixed the issue. I updated this code in the dashboard.php for the adminimize folder. Let me know if I did right or wrong. If it is right, please update in the next update of your plugin. Thx.
/**
- Get all registered dashboard widgets.
*
- @return array
*/
function _mw_adminimize_get_dashboard_widgets() { global $wp_meta_boxes; $widgets = array();
if ( ! isset( $wp_meta_boxes[‘dashboard’] ) ) {
return $widgets;
} foreach ( (array) $wp_meta_boxes[‘dashboard’] as $context => $datas ) {
foreach ( (array) $datas as $priority => $data ) {
foreach ( (array) $data as $widget => $value ) { $value['title'] = ( isset( $value['title'] ) && ! is_array( $value['title'] ) ) ? $value['title'] : ''; $widgets[ $widget ] = array( 'id' => $widget, 'title' => strip_tags( preg_replace( '/( |)<span.*span>/im', '', $value['title'] ) ), 'context' => $context, 'priority' => $priority, ); }}
} return $widgets;
}