To clarify:
I have multiple fields, a few of these fields are set to readonly, as i don't want them to be edited but git a que for the content that should be added below these fiels.
array(
'name' => 'Section:',
'id' => "{$prefix}academy_opening_times_title_note",
'type' => 'text',
'std' => 'Opening Times:',
'readonly' => true,
),
When ever this field or the key_value field has clone set to true, the std text isn't displaying.
array(
'name' => 'Opening times:',
'id' => "{$prefix}academy_opening_times",
'type' => 'text_list',
'clone' => true,
'options' => array(
'Monday - Friday' => 'Day(s)',
'8am-6pm' => 'Time(s)',
),
'add_button' => '+ Day(s) / Time(s)',
),
I hope the images provided in my original post show the output.