How to remove add groups among others

how to remove or disable set due date, claim, add groups items. Everyone over there

Here are some of the docs:

Actually what I want is that these options do not appear to the user.

Hey @MarceloCP,

currently, the options appear in tasklist regardless of the authorization. If you want to hide them, you can do so by adding custom CSS to Tasklist: https://docs.camunda.org/manual/7.11/webapps/tasklist/configuration/#logo-and-header-color .

This will also hide them from users with the correct authorizations

3 Likes

Thanks it worked your tip, I used the following css to disable the items

[cam-tasklist-task-meta] {
display: none;
}