Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author MagicStick

    (@magicstick)

    Hi mate. If you stick this into your functions.php you can limit to only super admin. 🙂

    function mpd_check_for_super_admin(){
    	$is_super_admin = current_user_can('manage_sites');
     	return $is_super_admin;
     }
    add_filter('mpd_show_settings_page', 'mpd_check_for_super_admin');
    add_filter('mpd_is_active', 'mpd_check_for_super_admin');
    Thread Starter strandcreative

    (@strandcreative)

    Perfect. Thank you very much 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Permissions’ is closed to new replies.