• Hi,

    for first, great module. It realy helps be WordPress more and more like a CMS/CMF. Good job.

    And now for second. Do you plan to add use Role scoper for native navigation menu or widgets (for example with associations with Dynamic Widgets) ?

    Regards.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Kevin Behrens

    (@kevinb)

    It’s possible, but I have no immediate plans to do so.

    Plugin Author Kevin Behrens

    (@kevinb)

    If you’re referring to the native WP Navigation Menus, Role Scoper is already designed to filter out unreadable posts.

    Is it possible to have a widget be only visible for members of a specific role, (e.g. authors)?

    I have all users redirected to the front page and would like the editors to have a little menu with some quick links (create post, access dashboard, etc.).

    Thanks, Titus

    Plugin Author Kevin Behrens

    (@kevinb)

    You could accomplish that with a little bit of custom code in sidebar.php:

    global $current_user;
    if ( in_array( 'author', $current_user->roles ) ) {
      // show stuff
    }

    Hi –

    Take a look at this page I’m working on:
    https://184.154.231.6/~mainefa9/archives/category/listing-of-farms

    I restricted access to Farm ID 900 but it’s only hiding the body text/description of the property, not the slideshow, not the right column (property Information).

    How can I make sure the whole page/content gets restricted?

    Let me know – thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Role Scoper] Support for widgets (or core navigation)’ is closed to new replies.