在Woocommerce 3.2+中使用Hooks更改购物车总计 [英] Change Cart total using Hooks in Woocommerce 3.2+

查看:99
本文介绍了在Woocommerce 3.2+中使用Hooks更改购物车总计的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在woocommerce结帐页面上向订单总数添加300,但是woocommerce_calculate_totals挂钩无法完成任务...

I want to add 300 to order total on woocommerce checkout page but woocommerce_calculate_totals hook doesn't do the job...

如果我使用var_dump($ total),我会看到正确的结果-int(number),但是订单表中的总金额没有变化.

If I use var_dump($total), I see the correct result - int(number), but the total amount in order table is not changing.

add_action( 'woocommerce_calculate_totals', 'action_cart_calculate_totals', 10, 1 );

function action_cart_calculate_totals( $cart_object) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( !WC()->cart->is_empty() ):


        $total = $cart_object->cart_contents_total += 300;

        var_dump($total);

    endif;
}

推荐答案

自Woocommerce 3.2起,钩子woocommerce_calculate_totals对此不起作用.
请参阅对此线程的解释:在WooCommerce中更改购物车总价

Since Woocommerce 3.2, the hook woocommerce_calculate_totals doesn't work for that.
See explanations on this thread: Change Cart total price in WooCommerce

您将必须使用以下方式之一:

You will have to use one of the following ways using:

1)这样的过滤器钩woocommerce_calculated_total:

1) The filter hook woocommerce_calculated_total this way:

add_filter( 'woocommerce_calculated_total', 'change_calculated_total', 10, 2 );
function change_calculated_total( $total, $cart ) {
    return $total + 300;
}

2)费用API,例如:

2) The Fee API like:

add_action( 'woocommerce_cart_calculate_fees', 'add_custom_fee', 10, 1 );
function add_custom_fee ( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    $fee = 300;

    $cart->add_fee( __( 'Fee', 'woocommerce' ) , $fee, false );
}

代码会出现在您的活动子主题(或活动主题)的function.php文件或任何插件文件中.

Code goes in function.php file of your active child theme (or active theme) or also in any plugin file.

这篇关于在Woocommerce 3.2+中使用Hooks更改购物车总计的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆