1. I have confirmed that the group add for MB_Term_Meta does not work on a fresh WP install on a custom post type & custom taxonomy.
2. I can't get the data using rwmb_meta
. I have to use get_term_meta
in which case I get the following result by running
print_r( $variable_result_of_get_term_meta_on_group );
:
Array // main array object
(
[0] => Array //what is this for?
(
[0] => Array //is this the group repeater ?
(
[subscription_id] => 102412471dfjadlsf
[subscription_name] => Basic
[subscription_amount] => 10
)
)
)
Because this is a group metabox type, i'm assuming the parent array of the main key=>value pairs acts as a group repeater. what does array between the main object array and the group repeater array function for?
Please help me solve this soon. I bought your plugin in order to make repeatable fields for both custom taxonomies & custom post types