Help with Custom Skin in V3
-
@Teemberland you should be able to by setting the default user setting in the ACP
-
@Teemberland said in Help with Custom Skin in V3:
@baris , question about Harmony in general. Say I'm using Harmony and I edited a few templates (removed/added some divs, etc). When a new version of Harmony comes out and I download the update, will it wipe all my customizations on the template level?
@PitaJ , last question about this topic. When Harmony gets updated, will it also wipe everything I added in library.js (custom functions)?
-
@Teemberland yes it will delete and overwrite everything in the nodebb-theme-harmony directory.
-
-
@PitaJ said in Help with Custom Skin in V3:
@Teemberland you should be able to by setting the default user setting in the ACP
Hi @PitaJ @baris , I hate to bump this topic again, but I can't seem to find that option in ACP.
-
@baris Yeah I was hoping I can set my custom skin (not one of the bootwatch skins) as default for registered users and guests. I understand if that is not possible right now. I was just wondering if that option is available right now or not. Thank you!
-
@Teemberland Even though it is not available in the UI, you can run below on mongodb to set your custom skin as the default just as if you clicked "select skin" in the ACP.
db.objects.update({ _key: "config" }, { $set: {"bootswatchSkin": "your_skin_name" } });
-
-