Since updating to 4.8.1 all the custom taxonomy has vanished from the front end display, I have updated all my extensions and checked the new structure in the demo file and updated where needed, but still no joy.
currently I am just trying to get the arrays to print so i can see they are set, but i have come across one field that just won't work here is the code i am using:
$meta_boxes[] = array(
'title' => __( 'Course Type2'),
'post_types' => 'courses',
'context' => 'side',
'priority' => 'low',
'autosave' => true,
'fields' => array(
array(
'name' => __( 'Course Type Taxonomy' ),
'id' => "{$prefix}type_select",
'type' => 'taxonomy',
'taxonomy' => 'course_type',
'field_type' => 'checkbox_list',
),
),
);
and then print the array on the front end:
print_r( rwmb_meta('course_type_select' ));
currently I get nothing returned.
The site has only been in development for a few months so I didn't expect to have problems with the update as there is no legacy stuff.