Works like a charm, thanks!!
Many thanks for the fast solution! Will check the new update on Monday.
I found this solution. Is this the correct way:
add_filter(‘members_enable_[CPT-Name]_content_permissions’, ‘__return_true’);
Found the solution, the plugin filters a post type with name ‘topic’:
$ignore_post_types = array(
'reply',
'topic',
'report',
'status'
);
if(in_array($post_type_name, $ignore_post_types))
continue;