老杨原创-ecshop安装ueditor教程,替换fckeditor,同时解决后台js冲突
1、解压上传目录uediter到根目录/includes/下
2、修改admin/includes/lib_main.php
- /**
- * 生成编辑器
- * @param string input_name 输入框名称
- * @param string input_value 输入框值
- */
- 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);
- }
修改为:
- /**
- * 生成编辑器
- * @param string input_name 输入框名称
- * @param string input_value 输入框值
- */
- function create_html_editor($input_name, $input_value = '')
- {
- global $smarty;
- //www.lyecs.com
- $kindeditor="
- <script id='editor' name='$input_name' type='text/plain' style='width:1024px;height:500px;'>$input_value</script>
- <script type='text/javascript' charset='utf-8' src='../includes/ueditor/ueditor.config.js'></script>
- <script type='text/javascript' charset='utf-8' src='../includes/ueditor/ueditor.all.min.js'> </script>
- <script type='text/javascript' charset='utf-8' src='../includes/ueditor/lang/zh-cn/zh-cn.js'></script>
- <script>
- var ue = UE.getEditor('editor');
- UE.getEditor('editor').focus();
- </script>
- <input type=\"submit\" value=\"提交\" />
- "; //www.lyecs.com 老杨ecshop ecshop模板 ecshop开发
- $smarty->assign('FCKeditor', $kindeditor);//www.lyecs.com
- }
3、修改admin/templates/pageheader.htm
将:
- {insert_scripts files="../js/transport.js,common.js,../js/utils.js"}
替换为:
- <script type="text/javascript" src="../includes/ueditor/fix_jquery/jquery.min.js" rel="stylesheet" /></script>
- <script type="text/javascript" src="../includes/ueditor/fix_jquery/jquery.json-1.3.js" rel="stylesheet" /></script>
- <script type="text/javascript" src="js/common.js" rel="stylesheet" /></script>
- <script type="text/javascript" src="../includes/ueditor/fix_jquery/transport_json.js" rel="stylesheet" /></script>
- {insert_scripts files="../js/utils.js"}
4、解决商品编辑中编辑器被重置,uedite无法保存内容的bug。
admin/templates/goods_info.htm
找到
- document.forms['theForm'].reset();
修改为:
- //document.forms['theForm'].reset(); www.lyecs.com
文件下载地址:(因为www.lyecs.com老杨用的是mac os系统,所以文件中有一些.DS_store文件,可以忽略或自行删除)ecshop模板 ecshop二次开发
链接: http://pan.baidu.com/s/1gdglb0J 密码: fflu
文件中已含js冲突修改文件,另外已修改php/config.json中的图处保存路径,用户也可以自行修改!