Hide Nintex Workflow 2013 Menu Option in Site Settings Menu

  • 21 January 2016
  • 3 replies
  • 0 views

Userlevel 3
Badge +8

We have a custom Task delegation that we created and would like to remove the option from the Site Settings Menu. Is there a way we can do this out of the box or has anyone found out how this can be done using Javascript?

Thanks!


3 replies

Userlevel 3
Badge +8

I figured it out. Add this to the bottom of your masterpage inside a doc.ready()

   

    var NWF1 = document.getElementById("ctl00_ctl51_IdWelcome_ExplicitLogout_ctl00_NintexWorkflow_Label");

    var NWF2 = document.getElementById("ctl00_ctl51_IdWelcome_ExplicitLogout_ctl00_NintexWorkflow");

    var NWF3 = document.getElementById("ctl00_ctl51_IdWelcome_ExplicitLogout_ctl00_Nintex.Workflow.Delegation");

   

     if (NWF1 !=null){NWF1.style.display='none'; }

     if (NWF2 !=null){NWF2.style.display='none'; }

     if (NWF3 !=null){NWF3.style.display='none'; }    

   

Cheers

Userlevel 7
Badge +17

Richard, are you trying to remove the Nintex menu from all sites? I didn't understand the reason you wanted it removed. Depending on the reason, you can also have it not visible based on a user's permission or by disabling the feature.

Userlevel 3
Badge +8

From the menu in the ribbon. We have another method of doing delegation.

Reply