后台-添加新商品中 把 ‘详细描述’ 放到‘通用信息’页面,集中到一个页面。

2016-07-07 15:03 来源:www.chinab4c.com 作者:ecshop专家



集中到一个页面,怎么弄的?


回答:
直接复制转移过去.

再请教下 ‘详细描述’ 是哪个文件?试找搜了很久没找到。。

找到了,还是在goods_info里边。

<!-- 详细描述 -->
<table width="90%" id="detail-table" style="display:none">
<tr>
<td>{$FCKeditor}</td>
</tr>



直接copy到这里,好像不行。它还是会在‘’


和这里引入有关系 么??


/*------------------------------------------------------ */
//-- 添加新商品 编辑商品
/*------------------------------------------------------ */

elseif ($_REQUEST['act'] == 'add' || $_REQUEST['act'] == 'edit' || $_REQUEST['act'] == 'copy')
{
include_once(ROOT_PATH . 'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件

$is_add = $_REQUEST['act'] == 'add'; // 添加还是编辑的标识
$is_copy = $_REQUEST['act'] == 'copy'; //是否复制
$code = empty($_REQUEST['extension_code']) ? '' : trim($_REQUEST['extension_code']);
if ($code == 'virual_card')
{
admin_priv('virualcard'); // 检查权限
}
else