Is there a way to disable or hide the To-Do button in the desktop app? I ask becaues I frequently select the to-do button by accident. I saw someone posted a request to remove or disable the button but there was no posted solution. I also searched the web and could not find an answer or workaround.
- Joplin version: Joplin for Desktop, 2.7.14, Revision 75cc9d7f9
- Operating system: Linux (Ubuntu and Arch based operating systems) and macOS (Monterey)
You can add the following to your userchrome.css file:
button.new-todo-button {
display: none;
}
Perfect. Thanks so much.
For those of you who are confused about how to do this, follow these steps.
- Open Joplin desktop app
- Select Tools in top menu followed by Options
- Select Appearance (see left side menu)
- Click on Show Advanced Settings
- Select Custom stylesheet for Joplin-wide app styles. (This will likely open a text editor app like Geany, TextEdit or so)
- Select and open userchrome.css file.
- Paste code on a new line:
button.new-todo-button {
display: none;
}
- Save file with added code. Close text editor.
- Go back to Joplin app. Click on Apply.
- Close Joplin app and restart. To-do button will be gone.
Thanks again Daeraxa 