EDIT: The issue is resolved. Seems to be working as expected now. Please disregard or delete this post.
I have a CPT that’s been hidden from search, but I now need to include it into the ASP index table.
I’ve adjusted the CPT config, but the post type is not appearing in the Available Post Types select box.
Is there a setting that enables my CPT to be visible to ASP?
My CPT config includes:
'public' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'query_var' => true,
'rewrite' => array( 'slug' => $this->post_type ),
'has_archive' => false,
'can_export' => true,
'capability_type' => 'post',
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'show_in_admin_bar' => true,
'hierarchical' => false,
'show_in_rest' => true,