Displaying cache and skins options in Content Editor
Skinnable / skins mixin
Skinnable option is hidden by default in Content Editor in Jahia version 8.
To make the skinnable option display again, you need to add a custom json file in your module, that will override the default configuration.
In any jahia of your Jahia module, in the following folder structure:
src/main/resources/META_INF/jahia-content-editor-forms/fieldsets
Create a new file named:
jmix_skinnable.json
And add the following lines inside the file:
{ "name": "jmix:skinnable", "priority": 2.0, "removed": false }
And deploy the module on your Jahia.
Cache mixin
The cache mixin is hidden by default in Jahia version 8.
To make the cache mixin display again, you need to add a custom json file in your module, that will override the default configuration.
In any jahia of your Jahia module, in the following folder structure:
src/main/resources/META_INF/jahia-content-editor-forms/fieldsets
Create a new file named:
jmix_cache.json
And add the following lines inside the file:
{ "name": "jmix:cache", "priority": 2.0, "removed": false }
And deploy the module on the Jahia platform.