How can I hide "🔁 every day 🏁 delete" in viewing mode? #3197
-
Hello. Can I view all the information in editing mode but see only the task and the date in viewing mode? Here’s an example of what I’d like to see. |
Beta Was this translation helpful? Give feedback.
Answered by
claremacrae
Nov 22, 2024
Replies: 1 comment 2 replies
-
After some experimenting, this will work. Create and enable a CSS snippet in your vault with this content: /* Hide onCompletion and recurring fields in Reading Mode and Tasks search results */
.task-onCompletion, .task-recurring {
display: none;
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
claremacrae
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After some experimenting, this will work.
Create and enable a CSS snippet in your vault with this content: