您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop不同商品分类调用不同模板
含玉2023-12-15 22:20:52ecshop商城教程已有人查阅
导读1.在ecs_category 表 添加 template 字段可以在后台运行sql语句:alter table `ecs_category` Add column template text NOT NULL AFTER `style`
1.在ecs_category 表 添加 template 字段可以在后台运行sql语句:alter table `ecs_category` Add column template text NOT NULL AFTER `style`
前缀自己改
2.打开admin/templates/category_info.htm 文件,分类的样式表文件 的下一行,加放以下代码
搜索:javascript:showNotice('noticeGoodsSN') 找到:大概在128行
搜索:
在下面加上
找到 function get_cat_info($cat_id),要在下面的sql语句里找到 cat_desc, style 在后面加上 ,template
大概在432行:cat_desc, style, template, grade,
搜索:assign_dynamic('category'); // 动态内容
下方找到:
前缀自己改
2.打开admin/templates/category_info.htm 文件,分类的样式表文件 的下一行,加放以下代码
搜索:javascript:showNotice('noticeGoodsSN') 找到:大概在128行
<tr>
<td class="label"><a href="javascript:showNotice('noticeGoodsSN');" title="{$lang.form_notice}"><img src="images/notice.gif" width="16" height="16" border="0" alt="{$lang.notice_style}"></a>{$lang.cat_style}:</td>
<td>
<input type="text" name="style" value="{$cat_info.style|escape}" size="40" /> <br />
<span class="notice-span" {if $help_open}style="display:block" {else} style="display:none" {/if} id="noticeGoodsSN">{$lang.notice_style}</span>
</td>
</tr>
下方增加:
<tr>
<td class="label">分类模板:</td>
<td>
<input type="text" name="template" value="{$cat_info.template|escape}" size="40" /> <br />
<span class="notice-span">留空为默认模板</span>
</td>
</tr>
3.打开admin/category.php搜索:
$cat['style'] = !empty($_POST['style']) ? trim($_POST['style']) : '';
找到 (一共两个地方)在下面加上
$cat['template'] = !empty($_POST['template']) ? trim($_POST['template']) : '';
4.打开category.php找到 function get_cat_info($cat_id),要在下面的sql语句里找到 cat_desc, style 在后面加上 ,template
大概在432行:cat_desc, style, template, grade,
搜索:assign_dynamic('category'); // 动态内容
下方找到:
$smarty->display('category.dwt', $cache_id);
//修改
$categorys = $cat['template'] ? $cat['template'] : 'category.dwt';
$smarty->display($categorys, $cache_id);
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop后台会员列表增加显示会员等级
目前的ECSHOP系统后台的会员列表默认是不显示会员等级的,它只是在会员搜索功能里面提供了一个按照“会员等级”搜索的功能,这样显示的有些不支援 -
ecshop商品分类显示商品分类菜单的方法
ecshop商品分类页面获得当前分类的子分类和 分类教程: 步:修改/include/lib_goods.php,在第24行加入以下代码:/*** 获得指 -
ecshop自定义分类模板样式示例代码
面是最模板实现的ecshop自定义分类模板的方法,子类可以继承很 的模板。好处是不用修改数据库,可以在后台分类自定义模板。功能比较简单,代码也很少,只是一个小技巧 -
ecshop快速购买添加到购物车和立刻购买并存的方法
在后台开启“一步购物则”可以不用到购物车“直接结算” 。从而实现立刻购买。然而购物车的功能又没有了。有没有像淘宝那样即可以立刻购买。又有购物车功能呢?
留言与评论 (共有 条评论) |