Hi,
I've tested on my local site, the relationships and admin columns still display as well. Please see my screenshots
https://cl.ly/68be801b777f
https://cl.ly/33e79a24a93c
Could you please deactivate all plugins except Meta Box plugins then check the problem again?
Or you can test with sample relationships between posts and pages
add_action( 'mb_relationships_init', function() {
MB_Relationships_API::register( [
'id' => 'posts_to_pages',
'from' => [
'object_type' => 'post',
'post_type' => 'post',
'meta_box' => [
'title' => 'Connect Pages',
'priority' => 'high',
],
'admin_column' => 'after title', // THIS!
],
'to' => [
'object_type' => 'post',
'post_type' => 'page',
'meta_box' => [
'title' => 'Connect Posts',
'priority' => 'high',
],
'admin_column' => 'after title', // THIS!
],
] );
} );