Hi,
I would like to know if it is possible to have multiple fields of same type on a blueprint ?
Is it possible ? And how could I achieve this ?
For example:
<?php if(!defined('KIRBY')) exit ?>
title: Artwork entry
pages: true
files: true
fields:
year:
label: Year
type: date
format: YYYY
text:
label: This is text field 1
type: textarea
text:
label: This is text field 2
type: textarea
text:
label: This is text field 3
type: textarea
Another example could be, say for example, I would like to have 3 “phone” type fields on a blueprint, or “email” and so on…
Cheers.