ecshop将fckeditor编辑器换成kindEditor
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-14 15:12:31 浏览: 评论:0
文件:admin/includes/lib_main.php,找到如下代码:
- function create_html_editor($input_name, $input_value = '') {
- global $smarty;
- $editor = new FCKeditor($input_name);
- $editor->BasePath = '../includes/fckeditor/';
- $editor->ToolbarSet = 'Normal';
- $editor->Width = '100%';
- $editor->Height = '320';
- $editor->Value = $input_value;
- $FCKeditor = $editor->CreateHtml();
- $smarty->assign('FCKeditor', $FCKeditor);
- }
- //修改成
- function create_html_editor($input_name, $input_value = '')
- {
- global $smarty;
- $kindeditor="<script charset='utf-8' src='../includes/kindeditor/kindeditor-min.js'></script>
- <script>
- var editor;
- KindEditor.ready(function(K) {
- editor = K.create('textarea[name=\"$input_name\"]', {
- filterMode : false,
- allowFileManager : true,
- width : '700px',
- height: '300px',
- resizeType: 0
- });
- });
- </script>
- <textarea id=\"$input_name\" name=\"$input_name\" style='width:700px;height:300px;'>$input_value</textarea>
- ";
- $smarty->assign('FCKeditor', $kindeditor);
- }
然后再进行修改上传目录修改includes/kindeditor/php/upload_json.php如下:
文件保存目录路径:
$save_path = $php_path . '../../../images/upload/';
文件保存目录URL:
$save_url = $php_url . '../../../images/upload/';
浏览服务器路径修改includes/kindeditor/php/file_manager_json.php如下:
根目录路径,可以指定绝对路径,比如 /var/www/attached/
$root_path = $php_path . '../../../images/upload/';
根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
$root_url = $php_url . '../../../images/upload/';
最后将 admin\templates\goods_info.htm 中 <input type="submit" value="{$lang.button_submit}" class="button" onclick="validate('{$goods.goods_id}')" />; 将 button 改成 submit
Tags: ecshop编辑器 kindEditor
- 上一篇:让ecshop显示商品销量或者月销量
- 下一篇:解决专题页产品分类顺序错乱问题
相关文章
- ·ECSHOP后台编辑器不能上传中文名图片的解决办法(2014-11-18)
- ·ECSHOP修改简单描述文本框为FCKeditor编辑器(2014-11-18)
- ·ecshop如何把编辑器FCKeditor更换成Kindeditor (2014-11-18)
- ·给ECSHOP后台商品简单描述为富文本编辑器(2015-04-04)
- ·将Ecshop后台fckeditor编辑修改|升级|器更改为kindeditor编辑器(2014-06-19)
- ·Ecshop后台fckeditor编辑修改|升级更改为kindeditor编辑器(2015-09-29)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)