Get woocommerce carts total amount

前端 未结 12 1891
北恋
北恋 2020-12-30 23:33

I am trying to apply a discount to a carts total price, but I can only do it to the item base price and not the over all price. I Googled and came across this post in the w

12条回答
  •  梦谈多话
    2020-12-31 00:19

    You need to call the global variable to ensure that it gets the correct values.

    If you add

     global $woocommerce;
    

    just before

     $amount2 = floatval( preg_replace( '#[^\d.]#', '', $woocommerce->cart->get_cart_total() ) );
    

    that should solve your problem.

提交回复
热议问题