0

我有这样的结帐车

产品价格数量总计

苹果 50 1 50

橙色 40 1 40

我需要将右侧的总数更改为 20

我试过的代码我会放在评论框上

但它改变了价格。我只需要改变总数。有什么想法吗?

4

1 回答 1

0

尝试在 functions.php 文件中使用这段代码:

if(is_cart()){
    add_action( 'woocommerce_before_calculate_totals', 'add_custom_price' );

    function add_custom_price( $cart_object ) 
    {
        global $woocommerce;
        $custom_price = $_POST["custom_prc"];

        foreach ( $cart_object->cart_contents as $key => $value ) 
        {
            $value['data']->price = $custom_price;
        }
    }
}
于 2017-04-21T06:00:55.053 回答