ckan / ckanext-pages

A simple builtin CMS for CKAN sites
GNU General Public License v3.0
51 stars 99 forks source link

WYSIWYG editor Does not show up. #34

Open shiblicse opened 8 years ago

shiblicse commented 8 years ago

I have installed the ckanext-pages. By changing the configuration lines to false in plugin.py file I can get rid off About/Group/Organization menus as below.

def build_pages_nav_main(*args):

about_menu = p.toolkit.asbool(config.get('ckanext.pages.about_menu', False))
group_menu = p.toolkit.asbool(config.get('ckanext.pages.group_menu', False))
org_menu = p.toolkit.asbool(config.get('ckanext.pages.organization_menu', False))

However, I cannot get the WYSIWYG editor by changing the following.

def get_wysiwyg_editor(): return config.get('ckanext.pages.editor', 'ckeditor')

or

def get_wysiwyg_editor(): return config.get('ckanext.pages.editor', 'medium')

metaodi commented 8 years ago

@shiblicse Could you try to install it again and see you still have this issue? There were some changes in the meantime, that possibly solved this problem.