How to remove about me option from SharePoint communication sites.

Tevon2.0 1,101 Reputation points
2023-05-19T20:10:12.77+00:00

Is it possible to remove the about me option from my sharepoint site for users?

User's image

SharePoint Server
SharePoint Server
A family of Microsoft on-premises document management and storage systems.
2,214 questions
SharePoint Development
SharePoint Development
SharePoint: A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.Development: The process of researching, productizing, and refining new or existing technologies.
2,663 questions
SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,572 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. RaytheonXie_MSFT 30,991 Reputation points Microsoft Vendor
    2023-05-22T06:40:00.93+00:00

    Hi @Tevon2.0,

    Per my test, you can use F12 to get the id of the element you want to hide like following

    User's image

    The id of mine is mp1_0_1_Anchor. Then you can insert a Script Editor in Edit Page like following

    User's image

    Finally copy the following css to the script editor and save. The About me will be hide.

    <style>
    #mp1_0_1_Anchor{
         display: none
    }
    </style>
    

    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.