I’m currently working on a ‘field group repeater’ for prices, unfortunately, the fields inside each field group don’t align – as shown in the image. So my question is simply if there’s a way to make them?
My code looks like this:
piklist('field', array(
'type' => 'group',
'field' => 'price',
'add_more' => true,
'template' => 'field',
'fields' => array(
array(
'type' => 'text',
'field' => 'pricelabel',
'label' => 'Pris titel:',
'required' => true,
'value' => 'B-kørekort lovpakken (Bil)'
),
array(
'type' => 'number',
'field' => 'price',
'label' => 'Pris',
'required' => true,
'value' => 13500
)
)
));
Thx in advance:))
Attachments:
You must be
logged in to view attached files.