Theme settings

Theme settings are accessed by navigating to Themes and on a theme pressing Theme settings. You control the theme settings from the files found in the config directory.

  • settings.json contains definitions for the settings.
  • settings_data.json contains saved settings data.

Config file in theme editor

Configuration file for settings open in code editor.

settings.json

This file control all settings that theme users see when clicking on the theme-settings.

Example of a basic settings.json file.

{
  "name": "Theme name",
  "version": "1.0.4",
  "developer": "Cradle systems",
  "description": "A theme description",
  "sections": [
	  {
		  <place for the main sections>
		}
	]
}

The settings file contains theme general information with the fields name, and a description of the theme as well as developer and version. The description property could contain a link to support documentation of the theme. These fields are followed by one or several sections that the users can click into.

Sections

Main sections are a way to group theme settings to provide a better overview.

Main sections for theme settings with preview of theme

The sections consists of a key, type and a caption which is the header displayed in the theme settings view. You can specify the key as you like but some sections have been “standardised” with predefined icons. type is always set to section.

Example of a settings section

    {
      "key": "global",
      "type": "section",
      "caption": "Global settings",
      "settings": [
					<place for theme settings>
			]
    }

List of standard theme setting sections

Key Glyph Description
“colors” O Color settings
“typography” icon:font[] Font settings
“header” icon:arrow-up[] Site header
“footer” icon:arrow-down[] Site footer
“social_media” icon:facebook[] Social media settings
“homepage” icon:home[] Frontpage of the site
“products” icon:tags[] Product settings
“collections” icon:archive[] Product collection settings
“cart” icon:shopping-cart[] Cart settings
“blog” icon:calendar[] Blog settings
“page” icon:pencil[] Page settings

Settings

You group settings into sections which are then displayed in a menu under theme settings. Each setting has a key as a unique identifier, type for the input type and a caption for the heading. Optionally also a description for providing more information.

Types of theme settings: header, text, number, checkbox, color, asset, font, select, blog, page, collection, navigation and struct.

header

A header settings is used for displaying a title in the theme settings.

        {
          "caption": "General",
          "key": "general",
          "type": "header"
        }

text

Text settings are used for displaying text input fields.

Example of a text setting

        {
          "caption": "Title",
          "key": "headerTitle",
          "type": "text"
        }

NOTE By using the max-length attribute you can specify max length of the text.

textarea

Textarea setting is used for text consisting of several sentences.

Example of textarea setting

    {
        "caption": "About us text",
        "key": "footerAboutShop",
        "rows": 6,
        "type": "textarea"
    }

NOTE The rows attribute allows to specify the height of the textarea.

checkbox

The checkbox type is used for displaying a checkbox input.

Example of a checkbox setting

        {
          "caption": "Use Custom Logo",
          "key": "logoUseImage",
          "type": "checkbox"
        }

color

The color setting displays a color selector in the theme settings.

Example of a color setting

        {
          "caption": "Highlight text",
          "key": "colorHighlightText",
          "type": "color"
        }

image

The image setting allows for file uploads into media and supports png, jpg and svg formats.

Example of a image setting

        {
          "caption": "Icon",
          "description": "40px x 40px png",
          "filename": "icon.png",
          "key": "faviconImage",
          "format": "image/png",
          "max-height": 32,
          "max-width": 32,
          "type": "image"
        }
Setting Explanation
filename The image file will use the filename specified and the format is converted to the file format specified. If you upload a file.svg file the conversion is made to a .jpg upon upload if filename is set to image.jpg.
format The format specifies the MIME type (image/png, image/svg+xml, image/jpg) and specifies what can be uploaded in the setting.

When uploading to a non-struct image setting. By default, the uploader enforces a unique filename, so that other files are not overwritten by accident due to clashing filenames. the uploaded appends a -n suffix to the file, i.e file-2.jpg.

asset

The asset setting allows for file uploads into assets, such as font files.

Example of a asset setting

        {
          "caption": "Font",
          "key": "fontFile",
          "type": "asset"
        }

TIP The description attribute can be used on all settings and it shows up as a help text under the input field.

select

The select settings displays a select box with options.

Example of a select setting

        {
          "caption": "Size",
          "key": "imageSize",
          "options": [
            {
              "caption": "Small, 150px",
              "value": "150"
            },
            {
              "caption": "Medium, 300px",
              "value": "300"
            },
            {
              "caption": "Maximum, 500px",
              "value": "500"
            }
          ],
          "type": "select"
        }

blog

The blog setting allows users to select an available blog.

Example of a blog setting

        {
          "caption": "Blog",
          "default": "Select blog",
          "key": "homepageBlog",
          "type": "blog"
        }

page

The page setting allows users to select an available page.

Example of a page setting

        {
          "caption": "Page",
          "default": "Select page",
          "key": "homepagePage",
          "type": "page"
        }

link-list (navigation)

The navigation setting allows users to select a navigation linklist.

Example of a linklist setting

        {
          "caption": "Main navigation",
          "key": "mainNav",
          "type": "linklist"
        }

struct

The struct setting allows you to define a group of settings that can be added or removed in blocks.

Example of a struct setting

        {
          "caption": "Select link lists",
          "description": "Create link-lists under Navigation",
          "key": "footerLinklists",
          "settings": [
            {
              "caption": "Link list",
              "default": "footer",
              "key": "footerLinklist",
              "type": "linklist"
            }
          ],
          "type": "struct"
        }

On struct fields the filename, possible to specify on images, is not enforcable, it keeps the original uploaded name.

collection (for eCommerce)

The collection setting allows users to select a collection.

Example of a collection setting

        {
          "key": "homepageCollection",
          "caption": "Feature products from this collection",
          "type": "collection",
          "default": "Select collection"
        }

Accessing theme settings

Theme settings are accessed in template files through the settings object.

Example accessing a theme setting in this case mypropertyEnabled.

<label>Myproperty
<input name="mycheckbox" {% if settings.mypropertyEnabled %}checked{% endif %}/>
</label>