Hi @Khushboo Kumari ,
Set up a home site from the SharePoint admin center is no longer available after June 2023. Instead, you need to use the Viva Connections admin center.
If you want to Set up a SharePoint home site just for global navigation, you can use the following steps:
- Start by creating a SharePoint communication site.
- Customize the communication site navigation to reflect the view you’d like to see in the global navigation pane. You can make edits to the navigation source and individual labels and links at any time.
- Set this communication site as a SharePoint home site using the SharePoint Online Management Shell tool.
$AdminSiteURL = "https://tenant-admin.sharepoint.com/"
$HomeSiteURL = "https://tenant.sharepoint.com/sites/sitename"
#Connect to the Site
Connect-SPOService -URL $AdminSiteURL -Credential (Get-Credential)
#Set Home Site
Set-SPOHomeSite -HomeSiteUrl $HomeSiteURL
- Share the SharePoint home site with users so they can access the global navigation links.
- On the SharePoint home site, select Settings and then Global navigation to enable and customize.
- For the global navigation source, select Home site navigation to display the SharePoint home site navigation that you created in the global navigation panel, then select Save.
For your reference:
https://learn.microsoft.com/en-us/viva/connections/home-site-plan
https://learn.microsoft.com/en-us/viva/connections/set-up-admin-center
Hope this helps.
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.