Forum Discussion
Tamras1972
Feb 22, 2023Iron Contributor
Missing Title Area - how to recover or show
Is there a way to show the Title Area section on a site page? I believe, if I remember correctly, some pages were created by saving a copy of the 'home' page on a Communication site, which didn't have a title area.
Tamras1972 I am guessing you did something like this: SharePoint Online: Create a blank page without header & title
To bring back the header and title area on site page, you can use PnP PowerShell like:
Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/siteName -UseWebLogin Set-PnPPage -Identity "MyPage" -LayoutType "Article"
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.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs
Tamras1972 I am guessing you did something like this: SharePoint Online: Create a blank page without header & title
To bring back the header and title area on site page, you can use PnP PowerShell like:
Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/siteName -UseWebLogin Set-PnPPage -Identity "MyPage" -LayoutType "Article"
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.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs
- Tamras1972Iron ContributorThank you so much!