Forum Discussion
Remove profile picture in the People Webpart
Hi,
As per the title, is there a way to remove the profile picture in the People webpart in sharepoint?
If not is there a way to pull the contact details into a sharepoint list instead?
thanks in advance
2 Replies
- rogervalBrass Contributor
The People web part doesn’t currently support removing or hiding the profile photo — it always displays the image coming from Azure AD / Delve.
If you need a profile-like view without pictures, the common workaround is:
- Use a SharePoint List with the fields you need (Name, Role, Email, etc.)
- Display it using a List View Web Part or Highlighted Content Web Part
- Apply formatting (JSON or standard views) to make it look like a directory
This gives you full control over what is shown without relying on the People web part’s fixed layout.
It’s a lightweight approach and works well when you want a clean, text-only staff/contact directory.
- virendrakIron Contributor
No, the People web part in SharePoint does not allow you to remove or hide the profile picture. It always pulls the photo from the user’s Microsoft 365 profile, and the hover card will always display a photo (real or placeholder).
I don’t know your exact use case for people details, but here are some ideas...
Manual approach (small, static groups)
- If you only need to show a few users and the list is not dynamic, you can manually add their details using other web parts such as Text, Call to Action, or List.
- This works for limited scenarios but doesn’t scale.
Custom SharePoint List (photo‑free directory)
- Create a list with columns like Name, Email, Phone, Department etc.
- Populate it either:
- Manually, or
- Automatically using Power Automate to sync from Azure AD / Microsoft 365 profiles (requires admin permissions).
- Display the list with the List web part or format it with JSON for a clean card‑style directory.
- Note: maintaining a manual list becomes overhead if you have many users.
Dynamic directory options
- Use PnP Search web parts to query people profiles and display only the fields you want (without photos).
- Or build a custom SPFx solution that queries Microsoft Graph and renders a directory with full control over which fields are shown.
“If my post solved your issue, please mark it as Solution and give it a Like.”