Navigation
32 TopicsChange left navigation to top navigation on modern teamsite
Hi, We got a modern team site with left navigation and we want to hide the left navigation and unhide the navigation in the top bar. In the end we want navigation like this: How can we achieve this? We do not want navigation above the site name but right next to the site name or underneath. In the example above: right next to 'Landings' Would love to hear a solution for this.8.3KViews2likes8CommentsHub Site Navigation Address Field Behaviour Multilingual
We have a SharePoint hub site which requires translation of its navigation links display names and address fields - default is English and users with Spanish language settings should see Spanish navigation titles and address field links. I followed the instructions from here - https://support.office.com/en-us/article/create-multilingual-communication-sites-pages-and-news-2bb7d610-5453-41c6-a0e8-6f40b3ed750c - specifically: "After the site is set up in English, a user with Spanish as their preferred personal language manually edits and translates the title, description, navigation and footer content into Spanish". This has worked correctly for the navigation link and label display name fields. A user with Spanish language settings see's the Spanish display name and non-Spanish users see the Default (English). I have found that this does not work the same if the Address field for a link is changed. For example, we have Spanish versions of pages we would like the navigation to link to for Spanish users. I find when I amend the Address field with Spanish language settings, it also changes the Address field URL for the Default language navigation. Is this expected behaviour? I cannot see anything regarding this either way in the documentation linked above.Solved7.4KViews0likes12CommentsCommunication Site missing Navigation menu.
Yesterday, the site was fine. Today, the navigation bar is missing on Site Pages. The Navigation bar was appearing normally on Libraries. Then I edited the nav bar, clicked Save, and the Nav bar disappeared on all the Libraries as well. This is a communication site, so the navbar is a top bar, not the normal side menu, if that makes a difference.7.1KViews0likes6CommentsHub Site Global Navigation Not Updating
Hi there, I have a teamsite "Werfkeet" which is the main hub site. In the hub I have 3 other Team sites. Each Team site is supposed to have the same global navigation at the top of the page. The Team site of the main hub site has the "SharePoint Server Publishing Infrastructure" feature enabled. When I edit the navigation by clicking on edit on the main hub sites navigationbar it doesnt update the navigation on all hub sites. I've been testing a little bit and found out that when I reset my browser's cashe it does load correctly but I can not ask of the entire company to reset their browser cashe everytime there's an update to the SharePoint navigation. Things I've tried: - Turning off cashing in the navigation element settings of the main hub site. - Turning off cashing in the navigation settings of the main hub site. - Leaving the site alone over night to see if the navigation did update on its own the next day I've seen many posts about this problem: - https://techcommunity.microsoft.com/t5/sharepoint/hub-site-top-navigation-suddenly-disappeared/m-p/191249/page/2 - https://techcommunity.microsoft.com/t5/sharepoint/menu-not-updating/m-p/1309625 - https://techcommunity.microsoft.com/t5/sharepoint/cannot-update-hub-site-navigation/m-p/252314 - https://techcommunity.microsoft.com/t5/sharepoint/problems-editing-hub-site-navigation/m-p/252647 All similar to the problem I'm having (most the exact same thing) and none of them have a clear answer on how to fix the issue so that I can roll out new navigation to everyone simultaniously and easily without having to ask employees to do something to be able to see the update to the navigation. Does anyone know of a solution to this problem?5.9KViews1like1CommentNavigation bar not updating for others
I am working with the global navigation for my home site. I have a repeating issue in which when i update the navigation (be it global or local site navigation) the user will for the first time need to click "edit" turn off then on audience targeting to see the navigation sync up to date. Once they do this once it works fine but this is a problem for global navigation as not all users have edit access to that and once we publish our sharepoint company wide we can not give edit access to every user across the company. Has anyone had this issue before? (The users role does not effect this issue it has happened to admins, editors, and visitors.)5.4KViews0likes1CommentSharePoint - PowerShell script to organize QuickLaunch menu with Alpha Order
With File Server Migration to SharePoint Online, we can retrieve in SPO a large number of document libraries (to reduce issues with existing SPO limitations). That is something acceptable from SPO point of view, but from user side, it could be quickly disturbing to find all those document libraries into the left menu without a clean order (in my case, it was more than 350 document libraries loaded). One solution could be to simply apply an alphabetical order into this menu which is easy to explain to end users. With SharePoint web interface, that is really boring to do this ordering and PowerShell with PnP is perfect for. You can find the script I developed that requirement, you can adapt with your specific requirement as you want. [string]$SiteURL = "https://yourtenant.sharepoint.com/sites/YourSiteCollection/YourSubSite/" [string]$TenantURL = "https://yourtenant.sharepoint.com" $SpecialBasicMenuItems = "Documents", "Home" [string]$RelativeSiteURL = $($SiteURL).Replace($TenantURL, "") Connect-PnPOnline -Url $SiteURL -UseWebLogin $MenuList = Get-PnPNavigationNode -Location QuickLaunch $OrderQuickLaunchMenu = $MenuList| Sort-Object -Property Title -Descending | Where-Object {$_.Title -NotIn $SpecialBasicMenuItems} $OrderQuickLaunchMenu #Remove all old QuickLaunch Items (except exclusions define before) foreach($MyQuickLaunchItem in $MenuList) { Remove-PnPNavigationNode -Identity $MyQuickLaunchItem.Id -Force } #Add each Item with correct order foreach($MyQuickLaunchItem in $OrderQuickLaunchMenu) { Add-PnPNavigationNode -Title $MyQuickLaunchItem.Title -Url $MyQuickLaunchItem.Url -Location "QuickLaunch" -First #Remove-PnPNavigationNode -Identity $MyQuickLaunchItem.Id -Force } #Reset root Site Menus Add-PnPNavigationNode -Title "Documents" -Url $($RelativeSiteURL+"Shared Documents/") -Location "QuickLaunch" -First Add-PnPNavigationNode -Title "Home" -Url $($RelativeSiteURL) -Location "QuickLaunch" -First When your script is adapted and executed, you will have all left menu items in the correct alphabetical order. Fabrice Romelard4.1KViews0likes0CommentsI want to create Top Navigation Extension in SPFx and want to Show on the place of the OOB
Hi Team, I want to create a Top Navigation Extension in SPFx and want to show the place of the OOB Top Navigation Can anyone guild me on that. Thank you and best regards, Devnarayan Joshi3.4KViews0likes1CommentMega Menu dropdowns disappear too quickly
The hub site Mega Menu in sharepoint online has become all but unusable for us. Mechanisms for triggering the drop-down menus are inconsistent: sometimes you need to click it, sometimes just hover. On occasions where you're lucky enough to get the dropdown to appear, a simple mouse movement will often make the submenu collapse again. Is anyone else experiencing this? It's a problem we've had for a couple years, but it just recently got so bad that we're now having to explore alternatives.3.2KViews2likes6Comments