When WYSIWYG is not WYSIWYG
Re: When WYSIWYG is not WYSIWYG
You can use custom ToolbarSets by editing [x]
Re: When WYSIWYG is not WYSIWYG
I changed fckconfig.js as suggested (FCKConfig.BasePath + '../../../../template/inc_css/frontend.css' ) and still the display is unchanged. I've also manipulated the default FCKeditor CSS file (fck_editorarea.css), reloaded the page, with no apparent result. The site is running FCKeditor version 2.6.4. Any suggestions?
Re: When WYSIWYG is not WYSIWYG
logout of the system, empty browser cache, reload, log in again
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
- Oliver Georgi
- Site Admin
- Posts: 9909
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: When WYSIWYG is not WYSIWYG
The toolbars are NOT!!! hardcoded there. These are just fallbacks. Custom templates can be defined in conf.inc.php:flip-flop wrote:First: The toolbar names are hardcodet in /include/inc_tmpl/profile.account.tmpl.php
-> $wysiwygTemplates['FCKeditor'] = array('phpwcms_basic','phpwcms_default','Default','Basic');
Second: I managed a custom toolbar in fckeditor_config.js.php
For me it is sufficient to edit a existing toolbar e.g. like phpwcms_basic (without [images] and with [paste text].Code: Select all
// a minimized FCKeditor Toolbar for phpwcms FCKConfig.ToolbarSets["phpwcms_basic"] = [ ['Bold','Italic','Underline','OrderedList','UnorderedList','Outdent','Indent','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','Link','Unlink','TextColor','BGColor','PasteText'], ['FitWindow','Source'] ] ;
Code: Select all
$phpwcms['wysiwyg_template'] = array( 'FCKeditor' => 'phpwcms_basic,phpwcms_default,Default,Basic', 'CKEditor' => 'phpwcms_basic,phpwcms_default,Default,Basic' );
Re: When WYSIWYG is not WYSIWYG
Claus wrote:
That worked. Thanks!logout of the system, empty browser cache, reload, log in again