Did you know you can modify the fields in system collections? đŸ˜±

Thanks for this!

It inspired me to find an even easier solution to hide any field of your choice with css. Without depending on data-primary which is not specific to a field. Here’s how you’d hide tags and description fields for example :


/* Hide specific fileds */
.field[data-collection=“directus_users”][data-field=“tags”],
.field[data-collection=“directus_users”][data-field=“description”]{
display: none !important;
}