Toggle "Site title visibility" using powershell?

H Risbud 251 Reputation points
2022-07-15T17:21:38.89+00:00

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

221166-titlevisibility1.png
221193-titlevisibility.png

Microsoft 365 and Office | SharePoint | For business | Windows
Windows for business | Windows Server | User experience | PowerShell
0 comments No comments
{count} votes

Answer accepted by question author
  1. Dillon Silzer 60,736 Reputation points Volunteer Moderator
    2022-07-16T20:40:17.963+00:00

    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

    221494-image.png

    -------------------------

    Please mark as correct answer if this is helpful.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.