Reputation: 1524
Is it possible to hide specific parts of ribbon?
My requirements:
1. Hide s4-ribbonrow but login control should be visible, remaining stuff should be invisible
2. Hide s4-titlerow but search and navigation should be visible
Upvotes: 0
Views: 889
Reputation: 707
If you allow annonymous accees on the site. Only logged in users will complete ribbon.
All other anonimous users will see ribbon strip with only "sign in" link that will give possibility to log in.
What SharePoint do you use? Server or Foundation?
If server you can customize you master page adding
<asp:LoginView ID="LoginView1" runat="server">
<anonymoustemplate>
<style type="text/css">
#s4-ribbonrow { display: none; }
</style>
</anonymoustemplate>
</asp:LoginView>
to it. This will hide ribbon completly from anonymous users.
All other users will have to call one of administration pages to be able to log in...
Hope it helps,
Andrew
Upvotes: 1