Hi kiwi2b,
Thank you for your post.
Go to:
| Code: |
/plugins/editors/jckeditor/includes/ckeditor/plugins/
|
and open the toolbarplugins.php file
Then add "
var $elementspath = 0; " below the " //core plugins to remove " comment.
Example:
| Code: |
/*------------------------------------------------------------------------
# Copyright (C) 2005-2010 WebxSolution Ltd. All Rights Reserved.
# @license - GPLv2.0
# Author: WebxSolution Ltd
# Websites: http://www.webxsolution.com
# Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use
# ------------------------------------------------------------------------*/
class JCKToolbarPlugins extends JCKPlugins
{
//core plugins to remove
var $dialog = 0;
var $htmldataprocessor = 0;
var $flash = 0;
var $stylescombo = 0;
var $filebrowser = 0;
var $save = 0;
var $toolbar = 0;
var $about = 0;
var $elementspath = 0;
|
Take care,
Paul