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.
It's possible, but I have no immediate plans to do so.
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
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
}
tb2012
Member
Posted 6 months ago #
Hi -
Take a look at this page I'm working on:
http://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.