sorry – that is my fault. I was thinking you were referring to another plugin.
It SHOULD be line 95 and 96 of the page_post_redirect_plugin.php file:
where the 2 lines say (line 95 & 96):
add_action( 'admin_menu', array($this,'ppr_add_menu') );
add_action( 'admin_menu', array($this,'ppr_add_metabox') );
change it to this:
if(current_user_can('manage_network_options')){
add_action( 'admin_menu', array($this,'ppr_add_menu') );
add_action( 'admin_menu', array($this,'ppr_add_metabox') );
}
You are basically wrapping them in an if statement to check for the Super Admin user lever. That will stop it from displaying both the menu and the redirect post_meta box. If you only want the menu off and not the meta box, just wrap the first line in the if statement and leave the second line out.
Please let me know if you have problems.
Don