문제

When I am in the new SharePoint view, the top link bar is appearing twice. When it is in the old classic view, it shows up once.

I checked /_layouts/15/AreaNavigationSettings.aspx and everything appears to look fine there. I am guessing it inherited the old SharePoint information during migration.

Is there a way for me to access that and remove it in SharePoint or using SharePoint Designer?

Thank you for any help!

enter image description here

도움이 되었습니까?

해결책

Check if you have register this site as a Hub site.

You can find more information about hub sites at: Planning your SharePoint hub sites

If it is a hub site then you can unregister it by following below documentation:

Unregister a site as a hub site

다른 팁

As Ganesh Sanap said, you could unregister that site as hub site.

Here is the way to using PnP PowerShell command as a supplement.

Open SharePoint Online Management Shell and type following PnP PowerShell:

Connect-PnPOnline -Url https://tenant.sharepoint.com -Credentials (Get-Credential)
Unregister-PnPHubSite -Site https://tenant.sharepoint.com/sites/myhubsite

Reference: https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/unregister-pnphubsite?view=sharepoint-ps

More information, you could refer to those documents provided by Ganesh Sanap.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top