ecshop后台商品描述改成编辑器的方法

时间:2024年01月31日

/

来源:网络

/

编辑:佚名

如果你想把商品简单描述弄的花里胡哨的,也许这篇文章对你比较有用。因为用编辑器形式来发布,才最容易实现个 化的简单描述,比如“给文字加不同颜 ”、“穿插一个图片”、“给某段文字加一个背景 ”等等。
1)、首先来修改 /admin/includes/lib_main.php 文件

function create_html_editor($input_name, $input_value = '')
全选代码复制
修改为
function create_html_editor($input_name, $input_value = '',$fckid=0)
全选代码复制
继续向下找到
$smarty->assign('FCKeditor', $FCKeditor);
全选代码复制
将它修改为
if ($fckid)
{
$smarty->assign('FCKeditor'.$fckid, $FCKeditor);
}
else
{
$smarty->assign('FCKeditor', $FCKeditor);
}
全选代码复制
2)、接下来要修改 /admin/goods.php 文件
找到 create_html_editor('goods_desc', $goods['goods_desc']); 在它下面另添加一行
create_html_editor('goods_brief', $goods['goods_brief'],2);
全选代码复制
3)、最后修改一下对应的模板文件 /admin/templates/goods_info.htm
找到下面这行代码
<textarea name="goods_brief" cols="40" rows="3">{$goods.goods_brief|escape}</textarea>
全选代码复制
并且修改为
{$FCKeditor2}
全选代码复制
自后,为了能够顺利的保存较长内容,还应该修改一下 ecs_goods 表的 goods_brief 字段,将它的字段类型从 varchar(255) 修改为  text至于如何修改,有很多途径,例如使用phpmyadmin  
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。