Is it possible to hide properties in certain notes (in Obsidian 1.4)?

What I’m trying to do

Is it currently possible to hide the new properties on certain pages? Some pages contain properties I’d like to be able to see, but there are also some pages containing “cssclasses” which I would like to hide. Is that currently possible?

You could give this a try (of course NoProps can be changed):

.NoProps {
    --metadata-display-reading: none; 
    --metadata-display-editing: none; 
}

With this anywhere in your YAML:

```
cssclasses: NoProps 
```
3 Likes

This worked for me. Thank you so much!!! :slight_smile:

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