- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2018 03:23 AM
I use Alfresco Share.
Because we do not use workflow function, I want to hide the workflow function from the menu on the detail screen of the document.
Please how should I solve this problem?
Thanks in advanced.
・CentOS ver.7
・Alfresco Community Edition 201704 GA
- Labels:
-
Alfresco Content Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2018 05:33 AM
You can disable start workflow action by adding below code in share-config-custom.xml.
<config evaluator="string-compare" condition="DocLibActions"> <actions> <action id="document-assign-workflow"> <evaluator>evaluator.doclib.action.disableAction</evaluator> </action> </actions></config>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2018 04:44 AM
You can refer following url regarding customization's for actions:
Adding new actions to the Document Library | Alfresco Documentation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2018 09:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2018 12:16 AM
My Pleasure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2018 05:33 AM
You can disable start workflow action by adding below code in share-config-custom.xml.
<config evaluator="string-compare" condition="DocLibActions"> <actions> <action id="document-assign-workflow"> <evaluator>evaluator.doclib.action.disableAction</evaluator> </action> </actions></config>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2018 09:54 PM
It is the result that I wanted. Thank you.
