As of this writing, there is no permission to prevent Member List page to be viewed by guests in vB5. A workaround is to hide the content via CSS. This is not a foolproof solution but enough for average users.
Add this in css_additional template or via Sitebuilder > Style > CSS Editor.
UPDATE: This mod is no longer needed since when Module Permissions were implemented.
Screenshot:
Add this in css_additional template or via Sitebuilder > Style > CSS Editor.
UPDATE: This mod is no longer needed since when Module Permissions were implemented.
Code:
.logged-out .memberlist-widget {
visibility: hidden;
}
.logged-out .memberlist-widget:before {
content: "Sorry, you are not authorized to view this page.";
visibility: visible;
}



Comment