修复限时促销商品在列表页面促销价格不显示的问题
找到:themes/shop/function/lyecs.com.php中的以下代码:
if($row['promote_price'])$data_list[$key]['promote_price']=$row['formated_promote_price'];
修改为:
if(!$row['promote_price'])$data_list[$key]['promote_price']=$row['formated_promote_price'];