您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商品页面定制属性附件上传文件上传图片
若烟2024-04-27 23:11:46ecshop商城教程已有人查阅
导读代码号代码号讲解下ecshop商品页面支持文件附件上传修改教程方法。1.在 admin\templates\goods_info.htm中
代码号代码号讲解下ecshop商品页面支持文件附件上传修改教程方法。
1.在 admin\templates\goods_info.htm中
3.在admin/goods.php 中
5.搜索"goods_desc = '$_POST[goods_desc]', " .
找到后 一个,再把"goods_desc = '$_POST[goods_desc]', " . 中的两个goods_desc 改成你新增的字段值
6.在
7.在goods.dwt中加入
1.在 admin\templates\goods_info.htm中
<span class="tab-back" id="article-tab">{$lang.tab_article}</span>后面加上
<span class="tab-back" id="file-tab">上传附件</span>
现在确定按钮的前面加入
<table width="90%" id="file-table" style="display:none" align="center">
<tr>
<td >上传附件:</td>
<td><input type="file" name="file">
<span class="narrow-label">{$lang.file_url}
<input name="file_url" type="text" value="{$goods.file_url|escape}" size="30" maxlength="255" />
</span></td>
</tr>
</table>
2.在数据库的ECS_GOODS表中加入一个字段,这个自己去命名3.在admin/goods.php 中
// 是否上传商品缩略图
if (isset($_FILES['goods_thumb']) && $_FILES['goods_thumb']['tmp_name'] != '' &&
在这个代码的前面加入
/* 取得文件地址 */
$file_url = '';
if ((isset($_FILES['file']['error']) && $_FILES['file']['error'] == 0) || (!isset($_FILES['file']['error']) && isset($_FILES['file']['tmp_name']) && $_FILES['file']['tmp_name'] != 'none'))
{
// 检查文件格式
if (!check_file_type($_FILES['file']['tmp_name'], $_FILES['file']['name'], $allow_file_types)) {
sys_msg($_LANG['invalid_file']);
}
// 文件
$res = upload_article_file($_FILES['file']);
if ($res != false) {
$file_url = $res;
}
}
if ($file_url == '') {
$file_url = $_POST['file_url'];
}
/* 计算文章打开方式 */
if ($file_url == '') {
$open_type = 0;
} else {
$open_type = $_POST['FCKeditor1'] == '' ? 1 : 2;
}
4.搜索代码 /* 入库 */ 在SQL语句中加入你在第二步增加的字段。5.搜索"goods_desc = '$_POST[goods_desc]', " .
找到后 一个,再把"goods_desc = '$_POST[goods_desc]', " . 中的两个goods_desc 改成你新增的字段值
6.在
$goods_thumb = reformat_image_name('goods_thumb', $goods_id, $goods_thumb, 'thumb');
后面加入
if ($file_url !== false){
$db->query("UPDATE " . $ecs->table('goods') . " SET file_url = '$file_url' WHERE goods_id='$goods_id'");
}
大概位置在1100行左右7.在goods.dwt中加入
{if $goods.file_url}
<a href="{$goods.你新增的字段}" >下载</a>
{else}
暂未上传
{/if}
如果后台清除下缓存,刷新看看商品页面效果。
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop缓存自动定时清除页面插件使用方法
ECSHOP的缓存存放在temp目录下,时间长了这个目录就会非常庞大,空间不足导致网站瘫痪,本插件通过ECSHOP的计划任务清除过多的页面缓存文件。 -
ecshop订单列表显示支付方式收货人姓名的方法
在ecshop订单列表中显示收货人姓名、支付方式的方法!3:在ECSHOP模板文件user_transaction.dwt的order_list中 -
ecshop邮编实现可以使用输入字母的方法
ecshop 默认情况下邮编只能填写数字,但是国外的很多城市邮编其实是数字和字母组合的,这个问题其实解决方法也很简单。 -
ecshop后台商店设置教程
ECSHOP商店设置。在网站后台 -> 系统设置 -> 商店设置(下图)里,我们可以完成商店的几乎所有的设置,包括的设置有网店信息基本设置、显示设置、购物流程、商品显示设置
留言与评论 (共有 条评论) |