修改Zen Cart whos online的在线人数.修改\includes\modules\sideboxes\whos_online.php
找到
if ($user_total == 1) {
然后在前面
增加
$n_guests = number_format($n_guests*5+70,0,’.’,’,’); //在线访客
$n_members = number_format($n_members*5+70,0,’.’,’,’);//在线会员
PS: $n_guests*2+1200 这样显示的客户数是 实际数量 * 5 + 70
