Hi Johnny,
You can add the following to your functions.php file or a site-specific plugin to remove it for non-admins:
function remove_dashboard_adblock() {
if ( ! is_admin() ) {
remove_meta_box( 'an_dashboard_widgets', 'dashboard', 'normal' );
}
}
add_action( 'admin_init', 'remove_dashboard_adblock', 99 );
Let me know if it works. 🙂
Hello @johnnyrc,
The latest version of 2.1 should fix this problem and show the widget only to proper admins.
Thanks !
indeed it does, thank you 🙂
But i think something is wrong -> https://postimg.org/image/3womkazh3
Where is the graph from admin dashboard ?
Hey,
If you have AdBlock enabled, you will not see them as the extension will block them.
Thanks !
Hello,
I dont have Adblock enabled.
Before the update (previous version) where i put the red arrow it was a graph, now it is no more, any ideeas why ? Did you guys disable it ?
Hi,
We gave the code to disable this widget for all users dashboard. Only Administrator can view this at his page. Are you not able to see it at administrator.
Thanks