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
Auto block list is an Umbraco package made for v10+. Made to help automate the process of converting nested content into an block list. In addition it transfers the content to the new block list format.
3
+
4
+
## About
5
+
With the removal of nested content in Umbraco 13. Uppgrading can potentially be challenging if you us it frequently. That's where Auto block list comes in. With one click AutoBlockLists runs the following workflow.
6
+
- Creates the block list data type based on the old nested content data type.
7
+
- Adds the new data type to the document type.
8
+
- And transfers the content to the newly created block list. In a saved state.
9
+
10
+
### Settings
11
+
There 2 settings that can be changed. Make sure to keep the ``{0}``.
12
+
13
+
```
14
+
"AutoBlockList": {
15
+
NameFormatting: "[Block list] - {0}",
16
+
AliasFormatting: "{0}BL"
17
+
}
18
+
```
19
+
- In the ``NameFormatting`` setting the ``{0}`` will be replaced with the nested content data type name.
20
+
- In the ``AliasFormatting`` setting the ``{0}`` will be replaced with the property alias containing the nested content.
0 commit comments