How to remove about me option from SharePoint communication sites.

Tevon2.0 1,106 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,422 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.
3,692 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,657 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. RaytheonXie_MSFT 40,471 Reputation points Microsoft External Staff
    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.


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.