Dear JSAO,
The Navigation link is showed only when the SharePoint Server Publishing Infrastructure feature is enabled via the out-of-the-box way.
However, you can enable the navigation link via SharePoint Online PnP scripts on root sites and subsites.
- Install PnP Online from the steps in PnP PowerShell Overview | Microsoft Learn.
- Run the following scripts with the administrator right.
#Parameters
$SiteURL = "root site URL or subsite URL(the site where you want to enable Navigation under Change and Look"
$FeatureId = "89e0306d-453b-4ec5-8d68-42067cdbf98e" #Navigation Feature ID
$FeatureScope = "Site"
Connect to SharePoint Online site
Connect-PnPOnline -Url $SiteUrl -Interactive
Get Feature from SharePoint site
$Feature = Get-PnPFeature -Scope $FeatureScope -Identity $FeatureId
Check if feature is already activated
If($Feature.DefinitionId -eq $null) {
Write-host "Activating Feature ($FeatureId)..."
# Activate the feature
Enable-PnPFeature -Scope $FeatureScope -Identity $FeatureId -Force
Write-host -f Green "Feature ($FeatureId) has been activated Successfully!"
}
Else {
Write-host "Feature ($FeatureId) is already active on this site!"
}
- Refresh the page to see the result.
Welcome to share any updates at your convenience.
Thanks for your effort and time.
Sincerely
Cliff | Microsoft Community Moderator