Sharepoint page keeps reverting to made for email

Teri Ko 30 Reputation points
2023-09-21T03:36:13.0566667+00:00

I used a homepage template, modified it and saved it. When I go to edit, I can only use web parts Made for email. How do I access all of it again?Screen Shot 2023-09-21 at 3.33.41 PM

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,230 questions
{count} votes

Accepted answer
  1. Simon, Mark 75 Reputation points
    2023-09-26T10:54:34.09+00:00

    This happened on our intranet hub site as well. Using PnP Powershell to set the layout type of the page to 'Article' and then back to 'Home' fixed this for us.

    Connect-PnPOnline -Url https://yourtenant.sharepoint.com/sites/yoursite -Interactive
    
    Set-PnPPage -Identity Home.aspx -LayoutType Article
    Set-PnPPage -Identity Home.aspx -LayoutType Home
    
    Disconnect-PnPOnline
    

1 additional answer

Sort by: Most helpful
  1. Ling Zhou_MSFT 23,600 Reputation points Microsoft External Staff
    2023-09-21T09:40:51.3433333+00:00

    Hi @Teri Ko,

    It looks like you have created a news post using one of the new 'News for Email' templates. 

    These posts are designed to work in SharePoint and also in email clients. This means that the available web parts are limited to ones that will work in emails - you can read more about them here: SharePoint News for Email templates - Microsoft Support

    If you want all the web parts, you will need to create a new news post and choose one of the 'Standard' templates instead (e.g. Blank, Visual, Basic text)

    33


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

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