Periodic notes plugin is messing with me and auto adds Open today
command to mobile ribbon bar on each open of obsidian moobile version (on Android).
This is very frustrating, since the command is bad and wouldn’t actually apply template - it just stays as code. I have written an alternative macro, which is opening daily note properly and added it to the ribbon, but it is very confusing to have ‘open today’ command twice.
I have tried to remove it via settings - it comes back on restart of Obsidian.
So, the solution I thought about is to rename my command and just hide the open today
command with css.
I have tried to add following code to custom css, but ‘Open today’ command is still present in the ribbon. Will really appreciate any help:
.is-mobile div[aria-label='Open today'] {
display: none;
}