How to add/remove action under "create menu"
Added by Kevin Keung about 9 years ago
Hi,
I would like to add some additional types and add the corresponding actions in the "Create menu", any help would be appreciated.
Replies (2)
RE: How to add/remove action under "create menu"
-
Added by Matthieu Laborie about 9 years ago
Hi,
Have a look at Alfresco documentation. You should add something like that
<config evaluator="string-compare" condition="DocumentLibrary" > <create-content> <content id="my-id" label="My label" type="pagelink" index="115" icon="project"> <param name="page">myPage?nodeRef={nodeRef}</param> </content> </create-content> </config>
Under share-config-custom.xml
Regards
RE: How to add/remove action under "create menu"
-
Added by Kevin Keung about 9 years ago
Got it, thank you for your prompt rely.