This have the option to disallow building and rendering for this page, but if I got to my website to the page “/caratteristiche” I still see the page..
Same thing goes for tags, in my config.tomlI have tags disabled with:
disableKinds = ['taxonomy', 'term']
Yet if I browse whatever page on the website, it is shown: both the /tags and single tag pages, these are even shown in sitemap!
This worked well for the pages which had the option render: never, but tags pages are still getting rendered, as well as the “/tags” section (?).
I don’t know what I might be missing, pheraps even single tags pages or tags sections should have render: never even if disableKinds = ['taxonomy', 'term'] is enabled?
Pheraps should I enable ignoreFiles= ['tags/*'] ? But what does exactly disableKinds does then?
This fixed it, if I include a `[taxonomy]` setting I must be sure to include existing taxonomies because otherwise the “tags” directory is not seen as a taxonomy by the config file, right?
But in the case I simply do not specify custom taxonomies, will my theme still see custom tags manually created under the tags/ directory?
If you have a content directory named “tags” and you want it to be treated as a taxonomy named “tags” you must either (a) omit the taxonomies key from your site configuration resulting in default taxonomies of “tags” and “categories”, or (b) explicitly define a “tags” taxonomy, e.g.