Tell us what you are trying to do?
I'd like to remove the slug of the post type from the post permalink.
Is there any documentation that you are following?
I've tried multiple plugins that are supposed to offer this feature, and none of them seem to work well with Toolset Types.
Is there a similar example that we can see?
The plugin "Custom Post Type UI" offers the opportunity to custom rewrite slug and choose true or false for "with front":
(default: true) Should the permalink structure be prepended with the front base. (example: if your permalink structure is /blog/, then your links will be: false->/news/, true->/blog/news/).
What is the link to your site?
hidden link
I would really like to continue to use Toolset Types, since it's what I use for everything else on my site. But for this one type, I would like to remove the slug from permalinks. I'm hoping it's somehow possible.
Thank you!
Hi there
WordPress does not support this, it explicitly requires that custom posts use a slug in their URL. By default, it is the slug of the custom post type, but it can be changed to whatever URL-appropriate text you like (in the options section when editing your custom post type).
It requires the slug to avoid possible ambiguity in resolving URLs, e.g. how else would it know whether site.com/first referred to a page called "first" or to a custom post type called "first".
Toolset simply adopts these WordPress requirements.
You can override them at your own risk by a custom code solution, such as is described here:
https://wordpress.stackexchange.com/a/204210/35739
Thanks.