You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/create-custom-content-type/step-1-add-configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The reason we suggest prefixing your content type with your vendor name is to pr
19
19
20
20
## The `example_quote` configuration
21
21
22
-
Only a subset of configuration elements are described in our Quote example (enough to understand the basic role of the configuration file). For more details, refer to [Content type configurations](../configurations/content-type-configuration.md) and [Additional configurations](../configurations/additional-configurations.md).
22
+
Only a subset of configuration elements are described in our Quote example (enough to understand the basic role of the configuration file). For more details, refer to [Content type configurations](../reference/configurations.md) and [Additional configurations](../how-to/how-to-add-additional-configurations.md).
23
23
24
24
25
25
The following configuration is from the Quote content type. An overview of these elements and attributes are described in the tables that follow.
@@ -62,7 +62,7 @@ The `type` element defines the key properties of your content type. The attribut
|`name`| Name of the content type that Magento uses for XML merging. The convention for using multi-word names is to separate the words with hyphens. |
64
64
|`label`| Label displayed in the Page Builder panel, option menu, and on the Admin stage. |
65
-
|`menu_section`| Menu section or category in the panel menu where your content type is displayed. The default menu sections are Layout, Elements, Media, and Add Content. See [Panel configurations](../configurations/panel-configurations.md) for more details. |
65
+
|`menu_section`| Menu section or category in the panel menu where your content type is displayed. The default menu sections are Layout, Elements, Media, and Add Content. See [Panel configurations](../how-to/how-to-customize-panel.md) for more details. |
66
66
|`component`| There are two component types to choose from: `content-type` and `content-type-collection`. Use `Magento_PageBuilder/js/content-type` for static content types that do not have children. Use `Magento_PageBuilder/js/content-type-collection` for content types that can contain children, otherwise known as container content types. |
67
67
|`preview_component`| Optional. JavaScript file (`preview.js`) that provides rendering logic within the Admin UI. The preview component does not need to specify the `.js` extension. If you don't provide the `preview_component`, Page Builder uses the base `Preview` component shown in the code: `Magento_PageBuilder/js/content-type/preview`. |
68
68
|`master_component`| Optional. JavaScript file (`master.js`) that provides rendering logic generic for all appearances of your content type when rendered on the storefront. The master component does not need to specify the `.js` extension. If you don't provide the `master_component`, Page Builder uses the base `Master` component shown in the code: `Magento_PageBuilder/js/content-type/master`. |
Copy file name to clipboardExpand all lines: docs/create-custom-content-type/whats-next.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,4 @@
2
2
3
3
Now that you've walked through the details and understand the basics of creating a simple content type, you are ready to tackle a more complex content type that uses containers.
4
4
5
-
See [How to develop a container content type](../how-to/how-to-develop-container-content-type.md) to get started.
5
+
See [How to develop a container content type](../how-to/how-to-create-container-content-type.md) to get started.
0 commit comments