Roundcube Community Forum

Release Support => Release Discussion => Topic started by: chriscapisce on February 26, 2022, 05:42:29 AM

Title: Hide 'About' button
Post by: chriscapisce on February 26, 2022, 05:42:29 AM
I would like to hide the ‘About’ button in Roundcube 1.5.2 (all skins).
One way would be to just edit /skins/elastic/styles/styles.min.css
but what would be the best way to do this without getting overwritten during updates?

Thanks in advance!

Title: Re: Hide 'About' button
Post by: SKaero on February 26, 2022, 01:47:21 PM
Create a skin extension https://github.com/roundcube/roundcubemail/wiki/Skins#extending-skins
Title: Re: Hide 'About' button
Post by: chriscapisce on February 26, 2022, 03:47:31 PM
Thank you very much!  :)
Title: Re: Hide 'About' button
Post by: JohnDoh on February 27, 2022, 02:14:17 AM
you can also hide the button using the `disabled_actions` config option;
Code: [Select]
// List of disabled UI elements/actions
$config['disabled_actions'] = ['about'];