Skip to Content
Menu
This question has been flagged
1 Reply
2146 Views

I want to hide setting app from dashboard but want to visible module configuration -> settings accordingly. After going to specific setting via module we can see the general settings option also visible in left side nav bar. Is there any way to hide that general setting from left side nav bar. But want to see specific module settings 

Avatar
Discard
Best Answer

Hi,

In Odoo v16, we can achieve it by simply add the following line a scss file in our custom module.

.o_base_settings .o_setting_container .settings_tab {display:none}

then include the corresponding file in the manifest as below.

'assets': {
'web.assets_backend':['your_module_name/static/src/scss/settings.scss']}

Regards

Avatar
Discard
Related Posts Replies Views Activity
2
Apr 25
2193
5
Mar 25
18814
1
Jun 24
1738
1
May 24
1705
1
Mar 24
2706