I am using a wysiwyg in a group. However, for the first wysiwyg I am not able to switch between the Visual and Text tabs. The rest works as expected.
$meta_boxes[] = array(
'title' => __( 'Legal Area Sections', 'textdomain' ),
'post_types' => 'page',
'include' => array(
'relation' => 'OR',
'template' => array( 'page-legal.php' ),
),
'fields' => array(
array(
'name' => 'Section', // Optional
'id' => 'legal_section',
'type' => 'group',
'clone' => true,
// List of sub-fields
'fields' => array(
array(
'id' => 'title',
'name' => __( 'Section Title', 'textdomain' ),
'type' => 'text',
),
array(
'id' => 'content',
'name' => __( 'Section Content', 'textdomain' ),
'type' => 'wysiwyg',
),
// Other sub-fields here
),
),
),
);