Navigation bar tab permissions

meeks

Member
So I've updated my "Unregistered / Unconfirmed" user permissions to disallow everything but "View" under general permissions. I did this because I'd like new users to see a my List Notices and the sign up button. The thing is I want to prevent them from also viewing the "Members" tab on the navigation bar so that they are unable to see currently registered members. I also would like to prevent them from seeing the sidebar containing "Members Online Now" and "Forum Statistics". Is that possible?
 
One more thing, I see that these group conditions can be bypassed by using the quick navigation buttons. I'm going to be searching for where I can use the conditions to remove them but if you know the template off the top of your head it may be quicker :P

Will post back when I find 'em
 
It is best to handle the actual content of the page instead of just the link to that page. That link I posted hides the content of the member list:

http://xenforo.com/community/resources/make-the-member-list-inaccessible-to-guests.337/

Otherwise an addon is required to more properly handle permissions.

One more thing, I see that these group conditions can be bypassed by using the quick navigation buttons.

This page?

http://xenforo.com/community/misc/quick-navigation-menu?selected=node-25

That page uses the quick_navigation_menu template. Here is how to find the root template of any page:

http://xenforo.com/community/threads/1-0-0-b1-how-to-identify-the-root-template-of-a-page.5591/
 
Mmmm, yes, that page, but what I meant by quick nav buttons are these..

xqgv8z.jpg


Now I don't mind not having quick nav at all, but when deleting the template, if I were to press that button, it'd show a buffer animation on top for as long as I stayed on the page.

Luckily, I think, I also don't mind having it, but I would like to prevent certain user groups from seeing those buttons.
 
Mmmm, yes, that page, but what I meant by quick nav buttons are these..

xqgv8z.jpg


Now I don't mind not having quick nav at all, but when deleting the template, if I were to press that button, it'd show a buffer animation on top for as long as I stayed on the page.

Luckily, I think, I also don't mind having it, but I would like to prevent certain user groups from seeing those buttons.


I never use that button. I wonder if anyone else does and if it's even worth having at all. Seems like extra clutter to me.
 
Code:
/* REMOVE BREADBOX FROM FOOTER */
.breadBoxBottom {
display: none;
}
 
/* REMOVE BREADBOX FROM TOP OF FORUM LISTING */
.breadBoxTop {
display: none;
}

Adding that to the EXTRA.css template works. Got so worked up in the template search should have just gone with google.

Thanks everyone!
 
Top Bottom