Author Topic: How to set default theme?  (Read 758 times)

Offline massimo2022

  • Newbie
  • *
  • Posts: 6
How to set default theme?
« on: February 08, 2024, 10:41:20 AM »
Hi all,

after upgrading the webmail have "elastic" as default theme.

I'd need "larry" as default for all emails addresses.
Is there a way to set the default theme for everyone?

thanks

massimo

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,882
    • SKaero - Custom Roundcube development
Re: How to set default theme?
« Reply #1 on: February 08, 2024, 04:19:35 PM »
In <RC root>/config/config.inc.php add the following setting:
Code: [Select]
// Skin name: folder from skins/
$config['skin'] = 'elastic';

You can also set the following setting if you want to disable any skins:
Code: [Select]
// Limit skins available for the user.
// Note: When not empty, it should include the default skin set in 'skin' option.
$config['skins_allowed'] = [];

Offline gregharkins

  • Jr. Member
  • **
  • Posts: 12
Re: How to set default theme?
« Reply #2 on: February 12, 2024, 02:39:57 PM »
when looking at the below text
change elastic to larry

and if you everyone to only get larry
change [] to 'larry'