在后台商品添加编辑器里面设定默认值

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

在admin/goods.php里面搜索create_html_editor('goods_desc', $goods['goods_desc']);
然后把这个改成
if($_REQUEST['act'] == 'add'){
$input_value='默认值';
create_html_editor('goods_desc', $input_value);
}else{
create_html_editor('goods_desc', $goods['goods_desc']);
}