|
1、下载uediter编辑器,解压上传目录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.zuimoban.com
$kindeditor="
[i,
"; //zuimoban
$smarty->assign('FCKeditor', $kindeditor);
}
3、修改admin/templates/pageheader.htm
将:
{insert_scripts files="../js/transport.js,common.js,../js/utils.js"}
替换为:
{insert_scripts files="../js/utils.js"}
4、解决商品编辑中编辑器被重置,uedite无法保存内容的bug。
admin/templates/goods_info.htm
找到
document.forms['theForm',.reset();
修改为:
//document.forms['theForm',.reset();
下载: http://pan.baidu.com/s/1hqGLeLm
密码: qjuw
文件中已含js冲突修改文件,另外已修改php/config.json中的图处保存路径,用户也可以自行修改! |
|