• Love this plugin! It gives granular access to pages so you can have a few users who can only edit a few pages on the site. The big thing you need to know is that these new limited roles can NOT use the role Admin, Editor or Author for this to work correctly. Use Contributor or create a new role with similar capabilities to Contributor.

    You may also want to hide the EAM panel for non-admins by adding a function like this:

    // Hides Editorial Access Manager panel if not admin
    if ( !current_user_can( 'manage_options' ) ) : ?>
    
    <style> #eam_access_manager{ display:none; }; </style> 
    
    <?php endif; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • In the current GitHub dev version we had addressed this too: we added a custom capability for managing EAM settings, which is by default assigned only to Admins. This is more robust than hiding the panel via CSS. See here for further details.

    Thread Starter Tim Bowen

    (@creativeslice)

    Nice, this is looking great! Any idea when these updates will be pushed into the WP repo?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Should be built into core!’ is closed to new replies.