I am unable to recreate this on our websites. The team pages are not created and when we do type and visit the possible URL, a 404 error is displayed for all team posts. By any chance, do you have an older version of the theme? I am not sure even older versions have this issue though.
Can you pls post me a temp login so that I can take a look at the backend code? Specifically would like to check this piece of code in framework/presentation/custom-post-types.php around line number 132.
register_post_type('team', array(
'labels' => $labels,
'public' => false,
'show_ui' => true,
'hierarchical' => false,
'publicly_queryable' => false,
'query_var' => true,
'exclude_from_search' => true,
'show_in_nav_menus' => false,
'menu_position' => 20,
'has_archive' => false,
'menu_icon' => get_template_directory_uri() . '/images/admin/users.png',
'rewrite' => false,
'supports' => array('title', 'editor', 'thumbnail', 'page-attributes')
));
The public flag should be false.