How to disable search button?

Hi,
I’ve some problem with search in my wiki. My documentation is not too large and I want hide search button. I was searching configuration but I didn’t find enything.
Please help my. How can I hide/disable search button ?

Hi @ewa , im also new to XWiki and already tried to hide different things. My experience is that you can hide most things by customize your theme skin or using css to just disable visibility of objects.

Try the following steps:

  1. Create an empty page like “MyWiki CSS”
  2. Open the dropdown-menue next to “Edit”
  3. Add the class StyleSheetExtension
  4. Set up the following code
#globalsearch {
  display: none !important;
}
  1. Set the parameters like you need it. Important is the parameter “Content Type = CSS”
  2. Save your page.

The search should be gone now

Best regards
JK

Hi, see How to hide the quick search field? (XWiki.org)

Thanks

Hi, it’s works.
Thansk