Hi everyone. I am using grav cms for a long time but recently I have found out that I am missing some fundamental concepts /details of grav. So I am sorry in advance to ask for stupid questions.
In quark there are many admin blueprint settings like when it is published and so on but I have not find out (in documentation and in Quark blueprints) what is correct way to add them to my custom blueprints when i dont want to create inherited theme to Quark.
Hi
In general, if you see a blueprint in quark you should be able to copy/paste that file directly into your theme and it should work. You will need to clear your broswer / grav cache too.
However its probably going to be more complicated than that. Do you have a specific field as an example? In general you can learn about all the field types here: https://learn.getgrav.org/16/forms/blueprints
You can also create a plugin to handle more advanced field usage which you can see here https://learn.getgrav.org/16/admin-panel/extending#adding-a-custom-page-blueprint-to-a-theme-plugin
1 Like
Thank You for your reply.
I know how to create custom blueprints (Example: Page Blueprints | Grav Documentation) that is not a problem at all. I want to add tabs âadvancedâ and âoptionsâ from default blueprint right away. Right now, I am using blueprints without them or I copy these lines from file /system/blueprints/pages/default⌠When Grav change I need to always check if something changed under the hood and it is not up to best practice, but I have not found out how to import only these two tabs without other default blueprints data/lines.
@tunkila, I fail to understand your question and replies, butâŚ
If you want to
- extend the default blueprint from â/system/blueprints/pages/default.yamlâ,
- which is overridden by Quarkâs âuser/themes/quark/blueprints/default.yamlâ
- and you want to add an extra field to the âSettingsâ section in the Advanced tabâŚ
Then, you should create file âuser/blueprints/pages/default.yamlâ and add:
extends@: default
form:
fields:
tabs:
fields:
advanced:
fields:
columns:
fields:
column1:
fields:
header.an_example_text_field:
type: text
label: Add a number
default: 5
validate:
required: true
type: int
That will give you the following page fields in the Advanced tab in Admin:

- The green box is added by the original âsystem/blueprints/pages/default.yamlâ,
- The blue box is an override of âheader.body_classesâ by Quarkâs âuser/themes/quark/blueprints/default/yamlâ
- The red box is added by your âuser/blueprints/pages/default.yamlâ
You can now safely upgrade Quark and Grav without impact on your extension.
1 Like
Thx I have read that part of documentation once again and finally get what I was looking for. 