Hi,
I created a front-end form to post. It’s using the great plugin grav-plugin-add-page-by-form from @bleutzinn .
I managed to create different forms and it’s working as expected. Even with the hurdle of image upload bug
But in one of my front-end form, I have a select field with multiple: true as follow:
name: photo_type
type: select
label: select multiple options
multiple: true
options:
option1: 'option1'
option2: 'option2'
option3: 'option3'
option4: 'option4'
All field values are saved but in the above field.
I get this in the frontmatter of the file:
photo_type: ' '
Does anyone have a clue? I’ve been searching but in vain.
Thank you