Project

General

Profile

How To Turn Off Search Field On The Home Page

Added by An Nguyen 11 days ago

Hello Everyone,

How can I disable, turn off this search field that is highlighted in the attached image

Please help
Many thanks

An,


Replies (2)

RE: How To Turn Off Search Field On The Home Page - Added by Bernhard Rohloff 9 days ago

I would create a custom theme for this. Take a look at HowTo_create_a_custom_Redmine_theme on how to do it. It basically imports everything from the original theme and you can add additional css rules to it afterwards.

My additional rules would be...

#quick-search label, #q {
   display: none;
}

You could place the line at the bottom of the original stylesheet but then the changes are wiped out on every update of redmine.

RE: How To Turn Off Search Field On The Home Page - Added by An Nguyen 8 days ago

Thanks for your help
I will try your solution

    (1-2/2)