ecshop商品销量后台添加虚拟销量以及前台显示销量
使用ECSHOP做网站时,有个苦恼,就是推广前期,商城销量很少,要是能够显示一个假的销量就好了。
通过本教程就可以实现。
教程开始
1.在sq执行语句
ALTER
TABLE
`ecs_goods`
ADD
`sales_volume_base`
INT
( 10 ) UNSIGNED
NOT
NULL
DEFAULT
'0'
INSERT
INTO
`ecs_shop_config` (`parent_id`, `code`, `type`, `store_range`, `store_dir`, `value`, `sort_order` )
VALUES
(
'7'
,
'show_goods_sales'
,
'select'
,
'1,0'
,
''
,
'1'
,
'1'
);
INSERT
INTO
`ecs_shop_config` (`parent_id`, `code`, `type`, `store_range`, `store_dir`, `value`, `sort_order` )
VALUES
(
'3'
,
'show_sales_type'
,
'select'
,
'1,0'
,
''
,
'1'
,
'1'
);
注意:如果你的数据表前缀不是‘ecs_’ 请自行修改
2./admin/includes/lib_goods.php中
修改为
3./admin/templates/goods_list.htm,在
后,添加
<th><a href=
"javascript:listTable.sort('sales_volume_base'); "
>{
$lang
.sales_volume_base}</a>{
$sort_sales_volume_base
}</th>
在
后,添加
<td align=
"center"
><span onclick=
"listTable.edit(this, 'edit_sales_volume_base', {$goods.goods_id})"
>{
$goods
.sales_volume_base}</span></td>
4./admin/goods.php,在
前,添加
5.goods.php,在
$smarty
->assign(
'categories'
, get_categories_tree(
$goods
[
'cat_id'
]));
// 分类树
后,添加
$smarty
->assign(
'sales_count'
, get_sales_count(
$goods_id
));
在末尾添加
6.在/languages/zh_cn/admin/shop_config.php,中
/languages/zh_cn/admin/shop_config.php
下,添加
7./languages/zh_cn/admin/goods.php,中
$_LANG
[
'goods_sn_exists'
] =
'您输入的货号已存在,请换一个'
;
后,添加
$_LANG
[
'sales_volume_base'
] =
'虚拟销量'
;
8./languages/zh_cn/common.php,中
$_LANG
[
'divided_into'
] =
'分成规则'
;
后,添加
9./themes/default/goods.dwt,在
后,添加
OK,完成!
原文链接:https://www.qiquanji.com/post/8680.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。