Hello All,
need help with adding an image in panel, I just get the message: No files to select.
What do I need to setup so I can upload a image, did I miss something on the blueprint?
images:
label: Images
type: files
In previos Version of Kirby I simply could ad an image:
Hi,
Itβs a bit confusing at first, but in Kirby 3 you need a files section (and not a field) to upload files.
1 Like
Thank you. Do you know if its possible to add a section into a column?
If i added it doesnβt work, this is how my blueprint looks like:
columns:
- width: 2/3
fields:
text:
type: textarea
size: medium
subtext:
label: Headline
type: text
Yes, you can add section in columns, but then you have to put your fields into a section as well.
columns:
- width: 2/3
sections:
field_section:
type: fields
fields:
text:
type: textarea
size: medium
subtext:
label: Headline
type: text
files_section:
type: files
1 Like