How to remove Task autonumber?

Tagged:  

Loving ProjectPier very much. One thing that I noticed in the newest version: every Task gets an auto assigned number. A task list I created has three tasks, but has [17], [18], and [19] in front.
How can I remove this?

We have a conflict in user requirements. An other user requested to have the unique task ids in front so the communication about which task was always 100% clear (they had many tasks with basically the same description).

Remove exactly this '[' .$task->getId() . '] ' . from application/views/task/task_list.php

Don't forget to make a backup of the original file in case you made a typo ;-)

Thank you so much for the answer!
I'm amazed how PP can be used by many people in their own unique way.

EDIT:
One more thing: I notice it show sup twice in the php file. Do I remove it both times?

Yes, 2 times. Sorry.

I found that in the dashboard it still displayed the same [getId] in the dashboard view.

Therefore if you want to remove it there as well you could remove

'[' .$assigned_task->getId() . '] ' .

from the file /application/views/dashboard/my_tasks.php

It has appeared to work for me but is this the best way to go about it? I just want to make sure.

--Zac