Hello,
I have a relationship set up between a custom post type and users :
// Add Att Group / Host User Relationship
MB_Relationships_API::register([
'id' => 'att_group_host_to_user',
'from' => [
'object_type' => 'post',
'post_type' => 'ot-att-group',
'meta_box' => [
'title' => 'Host',
'context' => 'normal',
],
],
'to' => [
'object_type' => 'user',
'meta_box' => [
'title' => 'Host of Groups',
'context' => 'normal',
],
],
]);
If I add more than 10 users to the post using the cloneable dropdowns, only 10 are saved, the others are there but are shown empty.
Any clues what is going on ?
Many thanks 🙂