【发布时间】:2016-06-10 12:04:58
【问题描述】:
我已将以下代码添加到我的 function.php 中,但在应用优惠券后它没有对价格进行四舍五入。
我正在使用 woocommerce 2.5.5。
这是我的代码:
add_filter( 'woocommerce_get_price_excluding_tax', 'round_price_product', 10, 1 );
add_filter( 'woocommerce_get_price_including_tax', 'round_price_product', 10, 1 );
add_filter( 'woocommerce_tax_round', 'round_price_product', 10, 1);
add_filter( 'woocommerce_get_price', 'round_price_product', 10, 1);
function round_price_product( $price ){
// Return rounded price
return round( $price );
}
怎么了?
【问题讨论】:
标签: php wordpress woocommerce product price