为 October CMS 创建主题自定义文件
Creating a Theme Customization File for October CMS
当我使用单独的主题自定义文件时,我无法让主题自定义表单字段显示在后端。这就是我所做的。在我的 theme.yaml 文件中——我有以下代码:form: config/fields.yaml
。这有助于让自定义按钮显示在后端。
但是,我不是 100% 确定如何格式化 config/fields.yaml 文件。目前,我是这样设置的:
form:
fields:
layout:
label: Layout
comment: Choosed between a boxed or wide layout.
type: dropdown
options:
stretched: Stretched
boxed: Boxed
但是没有任何显示。
我尝试取出 'form:' -- 仍然没有任何显示。
我是不是做错了什么?
删除 fields.yaml 中的 "form:" 并重新缩进。
form:
fields:
layout:
label: Layout
comment: Choosed between a boxed or wide layout.
type: dropdown
options:
stretched: Stretched
boxed: Boxed
fields:
layout:
label: Layout
comment: Choosed between a boxed or wide layout.
type: dropdown
options:
stretched: Stretched
boxed: Boxed
这应该有效!缩进对于正确解释 YAML
至关重要
当我使用单独的主题自定义文件时,我无法让主题自定义表单字段显示在后端。这就是我所做的。在我的 theme.yaml 文件中——我有以下代码:form: config/fields.yaml
。这有助于让自定义按钮显示在后端。
但是,我不是 100% 确定如何格式化 config/fields.yaml 文件。目前,我是这样设置的:
form:
fields:
layout:
label: Layout
comment: Choosed between a boxed or wide layout.
type: dropdown
options:
stretched: Stretched
boxed: Boxed
但是没有任何显示。
我尝试取出 'form:' -- 仍然没有任何显示。
我是不是做错了什么?
删除 fields.yaml 中的 "form:" 并重新缩进。
form: fields: layout: label: Layout comment: Choosed between a boxed or wide layout. type: dropdown options: stretched: Stretched boxed: Boxed
fields: layout: label: Layout comment: Choosed between a boxed or wide layout. type: dropdown options: stretched: Stretched boxed: Boxed
这应该有效!缩进对于正确解释 YAML
至关重要