Page 1 of 1
Wysiwyg not showing on FEU side
Posted: Thu Sep 04, 2014 9:34 am
by Torpedine
I am using the latest versions of CMS Made Simple and modules, but in the FEU side of modules, no WYSIWYG module shows, even if the checkbox "activate/deactivate WYSIWYG" is shown.
The WYSIWYG module is properly selected in the system preferences...
Re: Wysiwyg not showing on FEU side
Posted: Thu Sep 04, 2014 5:36 pm
by Dr.CSS
What module is trying to call the wysiwyg on the front end..?
Re: Wysiwyg not showing on FEU side
Posted: Thu Sep 04, 2014 10:20 pm
by psy
I recently had the same issue using a custom ListIt2 instance with ListIt2FEEdit.
Solution for me was to include CKEditor in the page template (or page metadata box), for example:
Code: Select all
<__script__ src="//cdn.ckeditor.com/4.4.4/standard/ckeditor.js"></__script>
{literal}
<__script__>
$('input[type="submit"]').on('click',function(e){
e.preventDefault();
for ( instance in CKEDITOR.instances )
CKEDITOR.instances[instance].updateElement();
$(this).closest('form').submit();
}
</__script>
{/literal}
Above assumes jQuery is preloaded. CKEditor worked perfectly.
More on CKEditor found at "
http://ckeditor.com/".
Re: Wysiwyg not showing on FEU side
Posted: Fri Sep 05, 2014 5:12 am
by Torpedine
I tried TinyMCE and MicroTiny