Forum Discussion
Disable SharePoint Social Bar
What is the easiest way to disable the social bar from all the SharePoint pages?
2 Replies
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.
Hello myansona
you can try this way from joaoferreira https://sharepoint.handsontek.net/2022/10/18/disable-likes-views-save-later-modern-sharepoint-pages/
Regards, Dave
P.s.: Your Tags...SharePoint Online is not the same like SharePoint Server 😉