SharePoint Online Management Shell
2 TopicsSharePoint custom theme toggles to a default Blue after a published site page refresh.
I have created a SharePoint subsite and applied a custom theme to it. The page looks good until I publish it. After it is published, once I refresh the page, it quickly toggles to a default blue theme. The theme was created using the custom PowerShell script as below, $themepalette = @{ "themePrimary" = "#e81a2b"; "themeLighterAlt" = "#fef5f6"; "themeLighter" = "#fbd8db"; "themeLight" = "#f8b6bb"; "themeTertiary" = "#f1707b"; "themeSecondary" = "#eb3342"; "themeDarkAlt" = "#d11726"; "themeDark" = "#b01320"; "themeDarker" = "#820e18"; "neutralLighterAlt" = "#f8f8f8"; "neutralLighter" = "#f4f4f4"; "neutralLight" = "#eaeaea"; "neutralQuaternaryAlt" = "#dadada"; "neutralQuaternary" = "#d0d0d0"; "neutralTertiaryAlt" = "#c8c8c8"; "neutralTertiary" = "#595959"; "neutralSecondary" = "#373737"; "neutralPrimaryAlt" = "#2f2f2f"; "neutralPrimary" = "#000000"; "neutralDark" = "#151515"; "black" = "#0b0b0b"; "white" = "#ffffff"; } Add-SPOTheme -Identity "ThemeName" -Palette $themepalette -IsInverted $false828Views0likes0CommentsHow to reset SharingAllowedDomainList and SharingBlockedDomainList in tenant
Once I updated SharingAllowedDomainList and SharingBlockedDomainList property using Set-SPOSite for test purpose. Set-SPOTenant -SharingAllowedDomainList "example.com" -SharingBlockedDomainList "example.com" Now that the test is over, I tried to reset these properties but I could not it. Set-SPOTenant -SharingAllowedDomainList "" -SharingBlockedDomainList "" The cmdlet causes an error. Set-SPOTenant : Adding an empty domain name I also tried from SharePoint Admin Center, but could not clear the properties. How to fix it?Solved1.9KViews0likes1Comment