modius
August 15, 2017, 1:45am
1
I’m trying to hie the Content Tab generated by Core. I’m sure this is possible and my mind keeps telling me that adding the following to ./customadmin/bob.xml
should work:
<?xml version="1.0" encoding="utf-8"?>
<webtop>
<section id="content" permission="hidden" />
</webtop>
But of course it doesn’t. What did I miss?
Do you want to permanently remove it for all users? Instead of permission, you can use the mergeType attribute to remove it;
<?xml version="1.0" encoding="utf-8"?>
<webtop>
<section id="content" mergeType="delete" />
</webtop>
1 Like
modius
August 15, 2017, 2:06am
3
Perhaps permission="hidden"
was removing it but as i’m an admin i see it anyway?
This is what I wanted!
blair
August 15, 2017, 3:23am
4
Webtop permissions are managed in the roles now, so perhaps there is a
permission there that is overriding that attribute.
Blair