How to remove message from task workflow form, \The content of this item will be sent as an e-mail message to the person or group assigned to the item\"

  • 14 October 2016
  • 7 replies
  • 9 views

Badge +2

I created an approval workflow and customized the task form. The form looks great, except for a message that appears at the top of the form, "The content of this item will be sent as an e-mail message to the person or group assigned to the item."  How can I get rid of this message?  (see attached print screen).


7 replies

Userlevel 6
Badge +16

You can do it with Nintex Forms

Badge +9

have you tried using css?

Badge +2

I wanted to try CSS but this message doesn't appear to have any unique classes or ID's associated to it. 

Badge +5

Hi 

Can you confirm that it does not have an unique class?  The following script worked for me before.

NWF$(document).ready(function()
{

NWF$(".nf-infomessage").hide();


});

Badge +2

Thomas,

I finally did find the class of ms-informationbar so I replaced nf-infomessage with that in your script and that seems to have worked.  Thanks so much!


Teresa

Badge +16

Go to the workflow tasks list settings. Under advanced there is a section about emailing when task assignment changes. 

Badge +4

This worked !

Reply