在woocommerce中舍入价格

时间:2017-01-09 19:34:18

标签: woocommerce

我找到了以下功能来汇总WordPress中的价格:

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 ceil( $price ); 
}

我有以下两个问题:

  1. 购物车中的总体不显示四舍五入的价格。
  2. 上述代码不适用于有变化的产品。
  3. 期待您的帮助!感谢。

    此致

0 个答案:

没有答案