> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Template Restrictions

The `enabled_on` and `disabled_on` properties allow you to restrict a section to certain template page types and section group types.

<Warning> You can use only one of `enabled_on` or `disabled_on`. </Warning>

## Properties

<ParamField path="templates" type="array">
  A list of template page types where the section can be used or prevented from being used. Use \["\*"] for all template types.
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "enabled_on": {
          "templates": ["index", "login"],
        }
      }
      ```
    </Tab>

    <Tab title="Disabled Example">
      ```json theme={null}
      {
        "disabled_on": {
          "templates": ["login"],
        }
      }
      ```
    </Tab>
  </Tabs>
</Panel>

## Available Template Types

* `index` - Homepage
* `login` - Login page
