ECSHOP显示商品总数和本月更新数

时间:2024年02月04日

/

来源:网络

/

编辑:佚名

1)、在网站根目录打开 /index.php 查找
assign_dynamic('index');
在下面添加代码:
$sql="select count(*) as goods_all from ". $ecs->table('goods'); //商品总数
 $smarty->assign('goodsnum_all',$db->getOne($sql));
 $time_month=mktime(0,0,0,date('m')-1,1,date('Y'));
 $sql="select count(*) as goods_month from ". $ecs->table('goods') ." where last_update >= " . $time_month; //本月更新数
 $smarty->assign('goodsnum_month',$db->getOne($sql));
2)、打开首页模板文件 index.dwt,在合适的地方调用,调用代码
本商城共有商品 {$goodsnum_all} 件,本月更新 {$goodsnum_month} 件
如果在全站显视如下修改
在网站根目录打开文件 includes/init.php 在适当的位置下面添加代码
我的是放在
$smarty->assign('ecs_css_path', 'themes/' . $_CFG['template'] . '/style.css');
    }
这条代码的上边
        $sql="select count(*) as goods_all from ". $ecs->table('goods'); //商品总数
        $smarty->assign('goodsnum_all',$db->getOne($sql));
        $time_month=mktime(0,0,0,date('m')-1,1,date('Y'));
        $sql="select count(*) as goods_month from ". $ecs->table('goods') ." where last_update >= " . $time_month; //本月更新数
        $smarty->assign('goodsnum_month',$db->getOne($sql));
 PS:在要在init.php 文件的最底部添加代码,可能会出现很多不可预测的事情。
再找到顶部活底部模板文件,放下面的代码放到适当的位置
本商城共有商品 {$goodsnum_all} 件,本月更新 {$goodsnum_month} 件
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。