• I’d like to hide Wordtube statistics, which now appear on the dashboard, from all but my admin users. How can I do that? Thanks.

Viewing 1 replies (of 1 total)
  • You need to add following lines to your 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’ );
    }
    ?>

    Hope that helps ??

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: wordTube] Wordtube – Hide from Dashboard’ is closed to new replies.