CKEditor upgrade

@Shahbaz Ali / @frm.mwz - this is actually an issue because of ElFinder, the file manager used by mailwizz. I tried to see why the issue occurs but i couldn't and the only thing that fixed it was upgrading elfinder.
Unzip attached and upload the ckeditor folder in apps/common/extension to override exiting folder.
This will fix things.
 

Attachments

  • ckeditor.zip
    2.9 MB · Views: 7
Hey, I see issue with ckeditor, you can also test it to confirm the issue. I have attached the image, please check.
 

Attachments

  • main-problem.png
    main-problem.png
    174.2 KB · Views: 16
Hey, I see issue with ckeditor, you can also test it to confirm the issue. I have attached the image, please check.

Consistently-across-different-renderers-showing html-emails
are much harder to design than html pages (websites),
as there are so many different email renderers out there (70+).

Hence, while CKeditor is a great html editor,
re html emails, until a really good drag & drop html email editor
is available (either as plugin/extension or integrated) incl rendering test
and if you want to avoid html email coding/testing
edit your html emails somewhere else (in a dedicated html email editor)
(or get it done by an email designer or use ready-made, tested templates)
and then just cut & past the (refined) code.

It may seem odd, but am still a great fan of plain text email

;)
 
Last edited:
@twisted1919 yes you're right. But ckEditor default double click action not go with that option. I have attached the file to explain it. So if you know how we can change that behavior let me know. Otherwise i have to debug which take time.
 
The only solution is to not use the base64image plugin.
View your page source in the browser and see from where the ckeditor config is loaded. Open the file via FTP and look for:
PHP:
config.extraPlugins = 'codemirror,base64image';
Make it
PHP:
config.extraPlugins = 'codemirror';
 
Back
Top