Hi there,
I have the same problem.
I have a settings page with a group. Inside that group there is a taxonomy_advanced field.
When I save the settings page, the selected values of the taxonomy_advanced field aren't saved anymore.
When does it be fixed?
[
'name' => '',
'id' => 'options_cat',
'type' => 'group',
'clone' => true,
'sort_clone' => true,
'add_button' => 'Hinzufügen',
'fields' => [
[
'name' => 'Posttype',
'id' => 'cpt',
'type' => 'select',
'options' => [
'video' => 'Video',
'podcast' => 'Podcast',
'event' => 'Termin',
'post' => 'Blog',
'forum' => 'Forum',
],
'columns' => 2,
],
[
'name' => 'Kategorien',
'id' => 'terms',
'type' => 'taxonomy_advanced',
'taxonomy' => ['category'],
'field_type' => 'checkbox_list',
'placeholder' => 'Kategorie auswählen',
'multiple' => true,
'columns' => 10,
],
],
],