Thanks for your message
The plugin was broken, but it’s weird it kinda worked for you, I fixed it in a hurry. Let me know if everything works fine now, on all browsers
To everyone
I had some issue with the options where we choose which bbcode appear in the toolbar. I’m quite busy at the moment so I had to delete these options for now, the plugin is fixed but every button will be on the toolbar even though you decided to hide them before.
Until I have time to fix everything properly, everyone can select some lines to hide the buttons, use the css section on the Customize section of the admin panel to add the css codes. You can add these lines in:
Common : to hide the button on desktop and mobile
Desktop : hide the button only on desktop
Mobile : hide the button only on mobile
/*
FORMATTING TOOLBAR TEMPORARY FIX
USE SOME OF THESE LINES TO HIDE
THE RELATED BUTTON IN THE TOOLBAR
*/
/* UNDERLINE BUTTON */
.d-editor-button-bar .underline_ui_button {
display: none;
}
/* IMAGE BUTTON */
.d-editor-button-bar .addimg_ui_button {
display: none;
}
/* FLOAT LEFT BUTTON */
.d-editor-button-bar .floatl_ui_button {
display: none;
}
/* ALIGN LEFT BUTTON */
.d-editor-button-bar .left_ui_button {
display: none;
}
/* ALIGN CENTER BUTTON */
.d-editor-button-bar .center_ui_button {
display: none;
}
/* ALIGN RIGHT BUTTON */
.d-editor-button-bar .right_ui_button {
display: none;
}
/* JUSTIFY BUTTON */
.d-editor-button-bar .justify_ui_button {
display: none;
}
/* COLOR BUTTON */
.d-editor-button-bar .color_ui_button {
display: none;
}
/* SIZE BUTTON */
.d-editor-button-bar .size_ui_button {
display: none;
}
Sorry for the inconvenience everyone, I’ll try to find a solution asap