Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / productivity / SharePoint

Hide Site Actions - SharePoint 2010

4.67/5 (3 votes)
20 Nov 2011CPOL 24.5K  
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)