muban大师 发表于 2015-6-7 09:29:06

ecshop编辑器fckeditor换百度ueditor编辑器教程

1、下载uediter编辑器,解压上传目录uediter到根目录/includes/下
       
        2、修改admin/includes/lib_main.php
       
        /**
       * 生成编辑器
       * @param   stringinput_name输入框名称
       * @param   stringinput_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   stringinput_name输入框名称
       * @param   stringinput_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中的图处保存路径,用户也可以自行修改!
页: [1]
查看完整版本: ecshop编辑器fckeditor换百度ueditor编辑器教程