cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Start Advanced Workflow

etzapata
Champ in-the-making
Champ in-the-making
Hello everyone,
     Does anyone know how to disable the 'Start Advanced Workflow' in the content items' "more actions" dropdown? :lol:

Thank you very much!

Eric
2 REPLIES 2

kevinr
Star Contributor
Star Contributor
Add these lines inside the 'alfresco-config' root element in your web-client-config-custom.xml:

   <config>
      <actions>
         <action-group id="document_browse_menu">
            <action idref="start_workflow" hide="true" />
         </action-group>
        
         <action-group id="doc_details_actions">
            <action idref="start_workflow" hide="true" />
         </action-group>
      </actions>
   </config>

Thanks,

Kevin

etzapata
Champ in-the-making
Champ in-the-making
Hi Kevin,
     Thank you very much! It was a NO SWEAT task.

Eric