Click here to Skip to main content
15,880,392 members
Articles / Productivity Apps and Services / Sharepoint
Tip/Trick

Hide Site Actions - SharePoint 2010

Rate me:
Please Sign up or sign in to vote.
4.67/5 (3 votes)
20 Nov 2011CPOL 24.4K   6  
Hiding the Site Actions button on Public Facing SharePoint Foundation (or Server) sites.

Hiding the Site Actions button on Public Facing SharePoint Foundation (or Server) sites:



  • Open up SharePoint Designer
  • Open the Master Page being utilized for your sites
  • Locate the following snippet of code:
  • XML
    <span class="ms-siteactionsmenu" id="siteactiontd">

  • Add:
  • XML
    <SharePoint:SPSecurityTrimmedControl runat="server" Permissions="ManageSubWebs">

    just before the line of code in 3.


  • Right click on the tag in step 3 and click on Select Tag.
  • Enter this after the span tag: </SharePoint:SPSecurityTrimmedControl>.
  • Save the Master Page.
  • Approve and publish if required (server version).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer RR Donnelley
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --