Message Boards

Liferay 6.2 CE use different WYSIWIG editor

Jurij Borga, modified 6 Years ago.

Liferay 6.2 CE use different WYSIWIG editor

New Member Posts: 11 Join Date: 3/9/14 Recent Posts
Hello.

We will need simplest possible WYSIWYG editor for liferay. Default ckeditor from portal.properties:


#
# You can configure individual JSP pages to use a specific implementation of
# the available WYSIWYG editors: bbcode, ckeditor, ckeditor_bbcode,
# ckeditor_creole, fckeditor, simple, tinymce, or tinymce_simple.
#
editor.wysiwyg.default=ckeditor


is too complicated. I have tried to change editor.wysiwyg.default property to bbcode, simple but nothing had happened and WYSIWYG editor did not change. Can you give me any hint?
thumbnail
Jorge Díaz, modified 6 Years ago.

RE: Liferay 6.2 CE use different WYSIWIG editor (Answer)

Liferay Master Posts: 753 Join Date: 1/9/14 Recent Posts
You have also to change the configuration of each specific portlet, see: https://docs.liferay.com/portal/6.2/propertiesdoc/portal.properties.html#Editors

For example, if you want to change it in webcontent add the configuration of that portlet:
editor.wysiwyg.portal-web.docroot.html.portlet.journal.configuration.jsp=simple
editor.wysiwyg.portal-web.docroot.html.portlet.journal.edit_article_content.jsp=simple
editor.wysiwyg.portal-web.docroot.html.portlet.journal.edit_article_content_xsd_el.jsp=simple
Jurij Borga, modified 6 Years ago.

RE: Liferay 6.2 CE use different WYSIWIG editor

New Member Posts: 11 Join Date: 3/9/14 Recent Posts
Exactly! Thanks a lot for your correct answer.