Forum Discussion
Microsoft Search
Jeremy Wood Thanks Jeremy, we do make extensive use of the PnP parts today. What we don't have access to are things like Acronyms which would be very useful as well. In non-GCC tenants, we are starting to leverage these features from Microsoft Search. They're just not available in GCC. Also, the common look and feel has not yet found it's way to GCC. The search bar is now on top for Teams and Outlook, but not for SharePoint. That is still (at least in our tenant) above the left Nav on Team sites and on the top right on Comm sites.
Mikael Svenson Inputs from you would be very helpful Sir.
It is October 1st 2021 been almost a year and GCC tenants still does not have " Microsoft search " in SharePoint Online yet.
Could not find any roadmap either.
Looks like it is not communicated properly in public articles.
Still I can see the search bar appear on Left (team site) and Right side (communication)
My customer's main goal was to disable this search box and not confuse users as they have deployed PNP search.
Unfortunately the commands only works for Microsoft search.
Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site
Would really appreciate if you can suggest some workaround solution.
- Jeremy WoodOct 14, 2021Iron Contributor
Prattay How did your agency vet and approve the Modern Search PnP? Since it is open source, our CISO is not inclined to allow its use since we don't "trust" the source as purely Microsoft produced. Any thoughts would be helpful.
- sb_sheriffOct 14, 2021Copper Contributor
Prattay I was happy too early. The built-in search box is located more than the home page. For example, it is on the document library page and it is still visible. Please advise a way to disable once for all if possible. And the document library page doesn't seem to allow for editing. Thanks.
- admin56445Oct 22, 2021Copper ContributorOur org is in the same boat. I think customization is the only way out here.
Luckily I came across this site which has lots of spfx extensions.
https://pnp.github.io/
You must have developer skills to customize sharepoint online, if the out of the box is not what you want.
Microsoft SharePoint free supports do not have any SLA for customization. They only deal with out-of-box features. If you have a premier subscription, then you can avail Developer support directly from microsoft. Again I thnk its is high time you hire a tleast 1 developer for Sharepoint online if you are planning to go with customization. Because the out-of-the box features are not that intuitive.
Jeremy Wood I think pnp community can be trusted even though it is open-source. The only difference is that PNP team does not have any SLA and can take any no of days to address your queries or fix a bug.
- sb_sheriffOct 02, 2021Copper Contributor
It's quite bizarre that Microsoft allows PnP search customization and meanwhile still keep the built-in search. And more important, it wouldn't allow disabling the built-in, so businesses under the GCC license all face the two different search boxes on the modernized SharePoint website. Please get some useful updates!
- PrattayOct 04, 2021Copper Contributor
Used this script editor webpart in tenant and added the below code to hide the searchbox.
https://www.linkedin.com/pulse/add-custom-css-sharepoint-online-modern-pages-1-manjee-ee-mis
Code
<style>
.ms-searchux-searchbox{display: none;}
</style>- sb_sheriffOct 13, 2021Copper Contributor
Prattay That solution works as putting the script onto the right spot (at the top banner where the search box is located at)! Thank you!