Hey all!
Recently transferred over from ACF to Metabox and so far I'm loving it. Everything went mostly smooth during the transition. Everything's pretty much working now except for one thing; taxonomy fields.
I've tried using both taxonomy advanced and taxonomy, but when saving it, it doesn't save the field to the taxonomy, but it does save it to the custom post type. After reading through some posts in here, it looks like it's different than ACF in that you have to make a new custom field group JUST for taxonomies for it to actually save. Is that right or am i missing something?
Don't mind the default "your text domain" i left it alone just to copy and paste in here.
<div> [
'name' => __( 'Vehicle Make and Model', 'your-text-domain' ),
'id' => $prefix . 'vehicle_make_and_model',
'type' => 'taxonomy_advanced',
'label_description' => __( 'Select the manufacturer of the vehicle first, then the model. If a make or model isn\'t listed, add it in. ', 'your-text-domain' ),
'taxonomy' => ['vehicles'],
'field_type' => 'select_tree',
'add_new' => true,
],</div>