今天BTV导航网的小编为你讲一下ecshop配送方式出错lib_common.php on line 959相关的内容。
ecshop只带的配送方式BUG
只要不是正式商业版的ECSHOP都会出现 配送方式配置出错。提示
Warning: number_format() expects parameter 1 to be double, string given in D:\**\lib_common.php on line 959
Warning: number_format() expects parameter 1 to be double, string given in D:\**\lib_common.php on line 959
原因是配送插件里面的免费额度为0,ec本身的bug导致了$price的值为空值,直接调用number_format出现了错误。
修改:
将includes\lib_common.php 的957~959行:
else
{
$price = number_format($price, 2, '.', '');
}
修改为
else
{
if(!$price){
$price = 0;
}
$price = number_format($price, 2, '.', '');
}
即可。 |
通过对ecshop配送方式出错lib_common.php on line 959的详细介绍,希望对你有所帮助,我们提供了更多和ecshop配送方式出错lib_common.php on line 959类似的相关内容推荐,可以你更全面的帮助你解决问题。我们BTV85网址导航还提供网址收录服务,你可以注册提交你的网站信息,帮你引导搜索引擎蜘蛛,同时还有网站SEO优化交流微信群,里面很多SEO高手和大咖,加友链,可以免费进群。