Disable or Hide To-Do Button

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.

  1. Joplin version: Joplin for Desktop, 2.7.14, Revision 75cc9d7f9
  2. Operating system: Linux (Ubuntu and Arch based operating systems) and macOS (Monterey)
1 Like

You can add the following to your userchrome.css file:

button.new-todo-button {
	display: none;
}
2 Likes

Perfect. Thanks so much.

For those of you who are confused about how to do this, follow these steps.

  1. Open Joplin desktop app
  2. Select Tools in top menu followed by Options
  3. Select Appearance (see left side menu)
  4. Click on Show Advanced Settings
  5. Select Custom stylesheet for Joplin-wide app styles. (This will likely open a text editor app like Geany, TextEdit or so)
  6. Select and open userchrome.css file.
  7. Paste code on a new line:
    button.new-todo-button {
    display: none;
    }
  8. Save file with added code. Close text editor.
  9. Go back to Joplin app. Click on Apply.
  10. Close Joplin app and restart. To-do button will be gone.

Thanks again Daeraxa :slight_smile:

4 Likes

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