Template Settings

Wieldy can be customized in many ways like the user can choose its preferred Layout, color combinations, language, template mode etc. This section is dedicated to understand how you can customize the template.

In order to customize the template, following files need to be used :-

  • Customizer - src/containers/Customizer.js

    This file contains the code related to template setting. It contains the code of customizer bar that you see on the template, so all the options present in the customizer bar in the template are managed from this file.

  • Settings - src/appRedux/reducers/Settings.js

    This file contains the initial values of all the customizer options like layout style and type, template color, template mode etc. so if you need to set the default value of any customizer option, you can make the necessary changes in this file.

  • constants - src/constants

    This folder contains some constants related to values of customizer parameters. In order to change the initial look and feel, you need to get the options of customizing properties , these options can be found in this folder.

In these files, you can see all the available options for the particular parameter and can make the required changes.

Last updated