Home

Step 1: Setup github repo for your theme

  1. Create new repo
  2. Connect via shopify
  3. Start local dev environment

Theme developer preview. How to add a switch to your theme settings so that memberr customizations are in developer preview.

  1. Open your Shopify theme in the shopify code editor.
  2. Locate the config/settings_schema.json file.
  3. Add the following code snippet to the end of the file (inside of the top level array):

_14
[
_14
...
_14
{
_14
"name": "memberr",
_14
"settings": [
_14
{
_14
"type": "checkbox",
_14
"id": "memberr",
_14
"default": false,
_14
"label": "Enable memberr elements"
_14
}
_14
]
_14
}
_14
]