当前位置:首页 > CMS教程 > ecshop > 列表

Ecshop后台设置促销时间精确到小时分钟和秒的设置方法

发布:smiling 来源: PHP粉丝网  添加日期:2015-09-29 10:45:02 浏览: 评论:0 

第一步:找到admin/tempate/good_info.htm文件

把:

  1. input name="selbtn1" type="button" id="selbtn1" onclick="return showCalendar('promote_start_date', '%Y-%m-%d',false, false, 'selbtn1');" value="{$lang.btn_select}" class="button"/> 

改为:

  1. input name="selbtn1" type="button" id="selbtn1" onclick="return showCalendar('promote_start_date', '%Y-%m-%d  %H:%M','24', false, 'selbtn1');" value="{$lang.btn_select}" class="button"/> 

把:

  1. input name="selbtn2" type="button" id="selbtn2" onclick="return showCalendar('promote_end_date', '%Y-%m-%d',false, false, 'selbtn2');" value="{$lang.btn_select}" class="button"/> //phpfensi.com 

改为:

  1. input name="selbtn2" type="button" id="selbtn2" onclick="return showCalendar('promote_end_date', '%Y-%m-%d  %H:%M','24', false, 'selbtn2');" value="{$lang.btn_select}" class="button"/> 

第二步:文件admin/goods.php将里面的:

  1. $goods['promote_start_date'] = local_date('Y-m-d'$goods['promote_start_date']); 
  2. $goods['promote_end_date'] = local_date('Y-m-d'$goods['promote_end_date']); 

改为:

  1. $goods['promote_start_date'] = local_date('Y-m-d H:i'$goods['promote_start_date']); 
  2. $goods['promote_end_date'] = local_date('Y-m-d H:i'$goods['promote_end_date']);

Tags: Ecshop后台时间 Ecshop小时分钟

分享到: