Home › Toolset Professional Support › [Resolved] How could i hide the default taxonomy of theme?
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Tagged: Setting up custom taxonomy, Types plugin
Related documentation:
This topic contains 2 replies, has 2 voices.
Last updated by MOHO 6 years, 4 months ago.
Well, it's delivered by the Theme, so you should (or better, the Theme should) disble it or provide a mode to disable it.
Usually taxonomies are regsitered with code such as register_taxonomy()
https://codex.wordpress.org/Function_Reference/register_taxonomy
You could create a Child theme and de-register it there:
https://developer.wordpress.org/reference/functions/unregister_taxonomy/
You can as well deactivate them in Toolset > Taxonomies (just like Built In Taxonomies) but not delete.
And I would not reccomend to remove Theme's features, as that theme may rely on the existence of such taxonomy
I would rather reccomend to use a Theme which fits your project's needs.
My issue is resolved now. Thank you!