The issue here is that the user wanted to add custom post types to the Author Archive for their users.
Solution:
This can be done by using the Hook below.
function post_types_author_archives($query) {
if ($query->is_author)
// Add 'books' CPT and the default 'posts' to display in author's archive
$query->set( 'post_type', array('nota', 'post') );
remove_action( 'pre_get_posts', 'custom_post_author_archive' );
}
add_action('pre_get_posts', 'post_types_author_archives');
Add the above to the functions.php file and just add your post type slug to the post_type array.
However, I have problem with using the Checkboxes field from ACF. It does not work when I import this into Toolset.
Solution:
The ACF checkboxes field is not compatible with Toolset Checkboxes field, Toolset Checkboxes field stores value in a serialized array, which is different from ACF checkboxes field, so it could not add the ACF Checkboxes Field to Types Control.
To avoid complications, you might consider to create a Checkboxes Field with Types plugin, and edit each post, setup the Checkboxes Field value manually.