Forum Discussion
myansona
Jun 14, 2023Copper Contributor
Disable SharePoint Social Bar
What is the easiest way to disable the social bar from all the SharePoint pages?
ganeshsanap
Jun 15, 2023MVP
myansona You can do it using either SharePoint Online PowerShell or PnP PowerShell. Here's an example using SharePoint Online PowerShell commands provided by Microsoft:
// Connect to SharePoint Online
Connect-SPOService -Url https://contoso-admin.sharepoint.com
// Disable Social bar on pages at site level
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -SocialBarOnSitePagesDisabled $true
Documentation:
- Enable or Disable the Social Bar (Like, Views, Save for later) for individual SharePoint sites
- Enable or Disable the Social Bar (Like, Views, Save for later) in SharePoint at tenant level
- Get started with SharePoint Online PowerShell
- Set-SPOSite
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.