When adding fields to blueprints, you can change there order. I have two questions regarding this.
-
When adding fields to the content tab they will always appear behind the content editor and uploads field. This won't work for the added field:
YAMLcontent: fields: content: label: Standard Content Editor uploads: label: Page Media Files new_field: label: My New Field ordering@: 0 # will not be pushed to top -
I usually unset the content editor field for lots of pages and would like to have the uploads field appear at the end. So, I wonder if something like this is possible:
YAMLcontent: fields: content: label: Standard Content Editor unset@: true uploads: ordering@: end # is it possible? new_field: label: My New Field ordering@: 0 # will not be pushed to top ---