문제

How to set global navigation using managed metadata in communication site SharePoint online and update left navigation using navigation tab. I am also not able to activate publishing feature in communication site.

도움이 되었습니까?

해결책

Communication site doesn't support global navigation using managed metadata. see below link. https://techcommunity.microsoft.com/t5/Communications-Sites-AMA/Do-Communications-Sites-support-Global-Navigation/td-p/83158

you need to create either team site.

다른 팁

You can activate feature using ShellScript as shown below

Import-Module Microsoft.Online.SharePoint.Powershell $siteurl="https://sitename.sharepoint.com/sites/sitename/"

[Microsoft.SharePoint.Client.ClientContext]$clientContext = New-Object Microsoft.SharePoint.Client.ClientContext($siteurl)

$username="username" $secure_string_pwd = convertto-securestring "pwd" -asplaintext -force

$clientContext.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $secure_string_pwd)

$site = $clientContext.Site;
$featureguid = new-object System.Guid "f6924d36-2fa8-4f0b-b16d-06b7250180fa"
$site.Features.Add($featureguid, $true, [Microsoft.SharePoint.Client.FeatureDefinitionScope]::None);
$clientContext.ExecuteQuery();

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