The tag cloud only gives me the tag value.
I’m looking for the tag text… how can I do this?
Blueprint:
fields:
thumbnail:
label: Thumbnail
type: files
max: 1
tags:
label: Model
type: tags
options:
- value: models
text: Model S
- value: model3
text: Model 3
- value: modelx
text: Model X
- value: modely
text: Model Y
help: Model S, Model 3, Model X, Model Y
You can only get the text values via the $page->blueprint() method (for more info see Using blueprints in the frontend | Kirby CMS), so you would need a custom page method /model method and use that in your info query.
As regards default values: Defaults are only ever assigned at page creation, not for existing pages.