Woocommerce Mini Cart Widget product price override

后端 未结 3 1459
长发绾君心
长发绾君心 2021-01-23 17:19

is it possible to change product price in Woocommerce Mini Cart Widget? I\'ve overrided price in cart using tips from WooCommerce: Add product to cart with price override? but i

3条回答
  •  轮回少年
    2021-01-23 17:49

    Instead of using "woocommerce_before_calculate_totals" you can use "woocommerce_cart_item_price" filter, some thing like

    add_filter('woocommerce_cart_item_price','modify_cart_product_price',10,3);
    
    function modify_cart_product_price( $price, $cart_item, $cart_item_key){
        $price = wc_price($custom_price, 4); 
        return $price;
    }
    

提交回复
热议问题