Hello,
I've been working with MetaBox Group to have a group of 3 cloneable admin fields, and it's working great. I figured out how to have an existing taxomony on the site, called "group_presenters", appear in a dropdown within the MetaBox Group. Here's the code I used in functions.php:
<div>
array(
'name' => 'Speaker',
'id' => 'group_presenters',
'title' => 'Group Presenter',
'type' => 'taxonomy',
'taxonomy' => 'group_presenters',
'multiple' => true,
'ajax' => true,
</div>
The dropdown of the existing taxonomy is showing properly in the MetaBox Group on the admin page, and you can choose items from the list, but it's not saving that data once you update the page. Do we have to do something in the database so the data gets saved? What's wrong here? Thank you for your help!