When people click 'Customize', is there a way to make 'Shared themes' come up as the default instead of 'My themes'?
Thanks,
Ace
When people click 'Customize', is there a way to make 'Shared themes' come up as the default instead of 'My themes'? Thanks, Ace |
You need to modify- BxProfileCustomizeConfig.php EDIT- /modules/boonex/profile_customize/classes/BxProfileCustomizeConfig.php if you are using Dolphin 7.1.4 around line 331 find- $aThemesTargets = array('my', 'shared'); change to- $aThemesTargets = array('shared', 'my'); Make sure to clear your caches afterward. That should do it I think :) |
I use 7.1.3 and it was located in the BxProfileCustomizeModule.php file. However, the code was the same and the change did work! Thanks for the help! |