Initialization Option Author API

show

Controls whether Item level tagging (Tags tab) is shown in the Item settings view.

You would want to use this to prevent authors from accessing the tagging functionality.

Examples

var initializationOptions = {
    "config": {
        "item_edit": {
            "item": {
                "tags": {
                    "show": false
                }
            }
        }
    }
};

Values

Request object key config.item_edit.item.tags.show

Default: true

Type boolean

Was this article helpful?