Hide specific tag in file.tags dataview

hello, is there a way to hide the “#clippings” tag in the file.tags column? thank you for the answers!

image

1 Like

You can through css:

.dataview .tag[href="#clipping"] {
  display: hidden;
}

Try this expression: filter(file.tags, (t) => t !="#clipping") as tags

```dataview
TABLE author, date, filter(file.tags, (t) => t !="#clipping") as tags
...
```
2 Likes

Won’t that remove the whole row?

@mnvwvnm worked perfectly fine.

Thank you guys, saved me a lot of hassle! @mnvwvnm @ScottKillen

How would you go about hiding multiple tags?

I’m not sure, but something like this:

filter(file.tags, (t) => t !="#tag1" AND t !="#tag2") as tags
2 Likes

In my fast test no.

It worked! Thank you

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.