由於ecshop原版fckeditor編輯器過於陳舊,就有想法要更新編輯器,最開始想到的是ueditor,但是最後無法獲取編輯器內的值,最後放棄.然後就轉至kindeditor.
方法也是在網上搜尋到的,並測試正常.但是最後就找不到原作者是誰.
具體的步驟如下:
2.解壓到includes資料夾下.
3.刪除無用資料夾.asp/asp.net/jsp/examples
4.admin\goods.php 416行左右
create_html_editor('goods_desc', $goods['goods_desc']);
這個呼叫方法注釋. 加入
$fckeditor = create_html_kindeditor('goods_desc', $goods['goods_desc'], 'theform');
$smarty->assign('fckeditor', $fckeditor);
5.admin\includes\lib_main.php
加入
function create_html_kindeditor($input_name, $input_value = '', $form_name = '')
6.admin\templates\good_info.htm
大約429行 提交按鈕 type更換才submit
7.大功告成
修改ECSHOP後台編輯器的表情
ecshop後台的商品編輯和文章編輯使用的是fckedtor編輯器,此編輯器的工具條工具欄是可以自定義的,ecshop預設使用的是normal 屬於中檔功能,下面我們來改一下設定,讓fckedtor的全部功能都顯露出來。開啟 admin includes lib main.php。1 6 funct...
如何更換python預設編輯器的背景色
1 首先要找到名為config highlight.cfg的檔案 在linux系列系統下路徑為 表示使用者目錄 idlerc 在windows xp下路徑為 c documents and settings 使用者名稱 idlerc 在windows 7下路徑為 c users 使用者名稱 idle...
將富文字編輯器UEditor引入到網頁中
頭部引進這兩個檔案 標籤內插入 標籤在指令碼內寫上ue.geteditor 這樣之後就可以在頁面上顯示了 取值和賦值的方法有很多種,大相徑庭都差不了多少 例項化編輯器 建議使用工廠方法geteditor建立和引用編輯器例項,如果在某個閉包下引用該編輯器,直接呼叫ue.geteditor editor...