Microsoft 365 and Office | SharePoint | For business | Windows
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Is there any way to toggle "Site title visibility" using SPO or PnP PowerShell? I see that some of my sites does not show title
You can get this option at Settings > Change the look > Header
Hello @H Risbud
Yes this can be done via Set-PnPWeb ($true to hide, $false to unhide):
Set-PnPWeb HideTitleInHeader:$true
See more information on Set-PnPWeb commands at https://github.com/pnp/powershell/blob/dev/documentation/Set-PnPWeb.md
-------------------------
Please mark as correct answer if this is helpful.