Skip to main content
Nintex Community Menu Bar

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\"

  • October 14, 2016
  • 7 replies
  • 37 views

Forum|alt.badge.img+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

Forum|alt.badge.img+16
  • October 14, 2016

You can do it with Nintex Forms


Forum|alt.badge.img+9

have you tried using css?


Forum|alt.badge.img+2
  • Author
  • October 17, 2016

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


Forum|alt.badge.img+5
  • Nintex Partner
  • October 18, 2016

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();


});


Forum|alt.badge.img+2
  • Author
  • October 21, 2016

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


Forum|alt.badge.img+16

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


Forum|alt.badge.img+4
  • July 6, 2017

This worked !