I am trying to:
Make a form to edit my CPT with publicly_queryable unchecked.
I expected to see:
My CPT in the edit box called "Post type to create/edit: "
Instead, I got:
Nothing.
This is due to the CPT setting publicly_queryable which I want to be unchecked. Workaround is to temporary enable this setting, than edit my edit form, (then CPT is visible in the drop down menu) save edit form, and then uncheck the publicly_queryable setting again.
Hello,
This is expected result, Toolset post form is for Editing/creating posts in front-end, so the post type is required to be "publicly_queryable".
See WordPress document:
https://codex.wordpress.org/Function_Reference/register_post_type#publicly_queryable
publicly_queryable
(boolean) (optional) Whether queries can be performed on the front end as part of parse_request()
Hmm. But actually I want this editor to work but i don't want people to query all the posts in my custom post type like "website.com/?post_type=mycustomposttypename"
In your case, I suggest you enable option "publicly_queryable"
and use Access plugin, disable "Read" permission of custom post type for guests users, see our document:
https://toolset.com/documentation/user-guides/setting-access-control/