Forum Discussion
How to hide page view counter
- Apr 05, 2021
You can hide(disable) it using SharePoint online PowerShell or PnP PowerShell.
To disable it at tenant level, you can use below PS command:
Set-SPOTenant -SocialBarOnSitePagesDisabled $trueor using PnP PowerShell:
Set-PnPTenant -SocialBarOnSitePagesDisabled $trueTo disable it at site collection level, you can use below PS command:
Set-SPOSite -Identity <site-coll-url> -SocialBarOnSitePagesDisabled $truePlease 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.
You can hide(disable) it using SharePoint online PowerShell or PnP PowerShell.
To disable it at tenant level, you can use below PS command:
Set-SPOTenant -SocialBarOnSitePagesDisabled $true
or using PnP PowerShell:
Set-PnPTenant -SocialBarOnSitePagesDisabled $true
To disable it at site collection level, you can use below PS command:
Set-SPOSite -Identity <site-coll-url> -SocialBarOnSitePagesDisabled $true
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.
- kato_rApr 08, 2021Copper ContributorThank you for your reply.
I can hide it !!