• Resolved define3d

    (@define3d)


    Thanks for this wonderful plugin.
    I want to remove the dashboard widget for all of my site users except the admin. I can remove default wordpress widgets on my dashboard but i’ve no idea how to remove wordtube stats from dashboard.

    hope to hear shortly on this..
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter define3d

    (@define3d)

    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’][‘wt_dashboard_statistics’]);

    }

    if (!current_user_can(‘manage_options’)) {
    add_action(‘wp_dashboard_setup’, ‘remove_dashboard_widgets’ );
    }
    ?>

    ??

    I tried that and I got an error message. Also, which functions?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: wordTube] Hide Dashboard Widget’ is closed to new replies.