I have added ohrms_core as a custom_addons. Now I have 2 dropdown navigation button on top left corner. Can anyone tell me how can I remove the default navigation button of odoo and keep the ohrms_core? enter image description here I have tried turning it off from user interface-> view and I have turned off various views to see which one works. But I did not find any solution.
Asked
Active
Viewed 22 times
2 Answers
0
You can use CSS to hide the button. Here is how to add CSS files to Odoo.
After creating and adding a CSS file to your module, use this style to hide the button.
.the-button {
display: none;
}
where .the-button
is the selector for the button you want to hide.

holydragon
- 6,158
- 6
- 39
- 62