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

    (@mpol)

    It is depending on the manage_categories capability.
    I will build in a check on the page itself.

    Thread Starter Sonnenschauer

    (@sonnenschauer)

    Ok, solved it differently by putting the following in my functions.php:

    $user_ID = get_current_user_id();
     if( !current_user_can('administrator') ) {
    	add_action('admin_menu', 'remove_admin_bar');
    }
    
    function remove_admin_bar() {
    	remove_menu_page('customtaxorder');
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Settings – Permissions’ is closed to new replies.