cancel
Showing results for 
Search instead for 
Did you mean: 

Disable create content menu

itjfox
Champ in-the-making
Champ in-the-making
Hi,i'm searching for disabling the link for the content creation on Alfresco. I found aswers about share configuration but i'm searching for configuration for alfresco in "Company home". The link has 3 voice in my case "create content" "create space" "advanced space wizard".
Is it possible to disable this menu.
Thanks
1 REPLY 1

hardik1512
Star Contributor
Star Contributor
You can hide these 3 menus by adding following in web-client-config-custom.xml file.

<config>
      <actions>
         <action-group id="browse_create_menu">
            <show-link>false</show-link>
            <action idref="create_content" hide="true" />
            <action idref="create_space" hide="true" />
            <action idref="create_space_wizard" hide="true" />
         </action-group>
      </actions>
   </config>