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...
Wysiwyg not showing on FEU side
Re: Wysiwyg not showing on FEU side
What module is trying to call the wysiwyg on the front end..?
Re: Wysiwyg not showing on FEU side
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:
Above assumes jQuery is preloaded. CKEditor worked perfectly.
More on CKEditor found at "http://ckeditor.com/".
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}
More on CKEditor found at "http://ckeditor.com/".
Re: Wysiwyg not showing on FEU side
I tried TinyMCE and MicroTiny


