[solved] After the upgrade all icons disappeared from the bar (as on the attached screenshot). [/solved]
Also, some of the plugins (like Note Link System, which was essential to my work) stopped working properly.
I remember a message that warned about the potential issue. I was just curious what "may not work" may actually mean, so I decided to give it a try.
I also remember that the message box suggested staying with the "legacy markdown editor". Since the new editor doesn't work for me and doesn't support the plugins, I would like now to switch to the "older" version, which allowed me to work.
How can I do that?
Do I need to uninstall 3.1.20 and reinstall the older 3.0.15 that worked fine for me?
EDIT:
OK, the old trick to hide this cursed button switching to WYSIWYG editor (ruining all plugins features) removed now all the buttons... I removed the custom CSS:
/* removes the WYSIWYG button */
display: none !important;
}
and the icons now appeared.
/ I need to figure out how to hide the truly unwanted WYSIWYG button now. If only there was a single little [ x ] checkbox in the settings panel disabling it without all those CSS tricks, that can stop working unexpectedly /
But still, the MD editor doesn't work with the linking system plugin, so my question on how to restore the "legacy" one keeps valid
/* removes the WYSIWYG (MARKDOWN/RICH TEXT) button */
/* …old method (Joplin 3.0.z and older) */
/*div.editor-toolbar div button {
display: none !important;
}*/
/* …new method (Joplin 3.1.z and newer) */
div.editor-toolbar .markdown-active {
display: none !important;
}
UPDATE: a prior version of this used div.editor-toolbar div button[title="Toggle editors"] But that relies on the English words "Toggle editors". .markdown-active is far better.