- This topic has 4 replies, 2 voices, and was last updated 2 years, 1 month ago by .
-
Topic
-
On the editor screens for two CPTs and for user profile, I see the meta screens to make connections. However, the connections aren’t saving on any of those screens.
There aren’t any javascript errors showing in the console.
I’m running the following plugins:
Meta Box
MB User Meta
MB RelationshipsI’ve registered two connections:
add_action( 'mb_relationships_init', function () { MB_Relationships_API::register( array( 'id' => 'programs_to_updates', 'to' => 'projects', 'from' => 'updates', ) ); MB_Relationships_API::register( array( 'id' => 'users_to_posts', 'to' => array( 'object_type' => 'user', 'meta_box' => array( 'title' => 'Program access', 'field_title' => 'Select projects', ), ), 'from' => array( 'object_type' => 'post', 'post_type' => 'projects', 'meta_box' => array( 'title' => 'Clients with access', 'context' => 'side', 'empty_message' => 'No users', ), ), ) ); } );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.