【发布时间】:2018-05-08 20:08:20
【问题描述】:
我需要在我的 Woocommerce 购物车上汇总价格。它四舍五入为 1。例如:
如果购物车的总价是 40.85 美元,我需要购物车显示 41.00 美元。
我试过这个命令,但是这个价格折扣了 0.15,我不知道该怎么做。我在其他网站上找到了这个,但在目录中收集了产品。
add_filter( 'woocommerce_calculated_total', 'custom_calculated_total', 10, 2 );
function custom_calculated_total( $total, $cart ){
return round( $total - ($total * 0.15), $cart->dp );
}
感谢您的帮助。
【问题讨论】:
标签: php wordpress woocommerce cart