You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add TinyMCE in Wagtail Project and it's failing so far on this error message: "makeTinyMCEEditable is not defined".
I did copy the changes required to make it compatible with Django and Wagtail > 2.0 and I have created separate directory "wagtailtinymce" which holds modified wagtail_hooks.py and rich_text.py. Also, I have there a static folder with wagtailtinymce that holds JS file tinymce-editor.js. I am trying to use it with RichTextField and here is my settings.py.
I am trying to add TinyMCE in Wagtail Project and it's failing so far on this error message: "makeTinyMCEEditable is not defined".
I did copy the changes required to make it compatible with Django and Wagtail > 2.0 and I have created separate directory "wagtailtinymce" which holds modified wagtail_hooks.py and rich_text.py. Also, I have there a static folder with wagtailtinymce that holds JS file tinymce-editor.js. I am trying to use it with RichTextField and here is my settings.py.
WAGTAILADMIN_RICH_TEXT_EDITORS = {
'default': {
'WIDGET': 'wagtailtinymce.rich_text.TinyMCERichTextArea'
},
}
Editor is not showing up on the page but the text field does show up. I hope this was enough information
Wagtail version: 2.9
Django: 3.0.7
Python: 3.8
The text was updated successfully, but these errors were encountered: