Is there any way to hide the Xwiki header

Dear All,

Is there any way to hide the Xwiki header (as the attached image). I am very appreciate for any help

Thanks

Xwiki

Hello, better to ask in #discuss channel :hugs:. Have you tried this piece of velocity code #set($displayPageHeader = false)?

1 Like

Actually this forum is the good place for async questions/answers. The matrix chat is good for a discussion. The nice part of the forum is that it increases the knowledge base searchable on the internet.

Several ideas:

  • Use SSX to inject some CSS to hide the menuview div
  • Define a custom skin and provide a modified template for menus_view.vm

I don’t know about displayPageHeader but I see it’s documented at https://extensions.xwiki.org/xwiki/bin/view/Extension/Flamingo%20Skin#HCustomisingUIelements

3 Likes

It does not work!

Thanks

Do you mean,
trom this
Screenshot 2023-08-23 at 17.06
to this?
Screenshot 2023-08-23 at 17.06 1

e.g. hide the breadcrumbs?

I’ve found the solution and solved it

Thanks

what was your solution?

I set the menuview with display as false
#menuview {
display: false;
}

Thanks

2 Likes