加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – 在Woocommerce 3中更改购物车商品价格

发布时间:2020-12-13 13:44:14 所属栏目:PHP教程 来源:网络整理
导读:我正在尝试使用以下功能在购物车中更改产品价格: add_action( 'woocommerce_before_shipping_calculator','add_custom_price' ); function add_custom_price( $cart_object ) { foreach ( $cart_object-cart_contents as $key = $value ) { $value['data']-
我正在尝试使用以下功能在购物车中更改产品价格:
add_action( 'woocommerce_before_shipping_calculator','add_custom_price' 
     );
      function add_custom_price( $cart_object ) {
         foreach ( $cart_object->cart_contents as $key => $value ) {
         $value['data']->price = 400;
        } 
     }

它在WooCommerce版本2.6.x中正常工作,但在3.0版本中不再起作用

如何在WooCommerce 3.0版中使其工作?

谢谢.

更新(2018年9月)

使用WooCommerce 3.0版,您需要:

>改为使用woocommerce_before_calculate_totals钩子.
>改用WC_Cart get_cart()方法
>改用WC_product set_price()方法

这是代码:

add_action( 'woocommerce_before_calculate_totals','add_custom_price',20,1);
function add_custom_price( $cart_obj ) {

    // This is necessary for WC 3.0+
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    // Avoiding hook repetition (when using price calculations for example)
    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    // Loop through cart items
    foreach ( $cart_obj->get_cart() as $cart_item ) {
        $cart_item['data']->set_price( 40 );
    }
 }

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

此代码经过测试并可以使用.

Note: you can increase the hook priority from 20 to 1000 (or even 2000) when using some few specific plugins or others customizations.

有关:

> Set cart item price from a hidden input field custom price in Woocommerce 3
> Change cart item price based on custom cart data in WooCommerce
> Set a specific product price conditionally on Woocommerce single product page & cart
> Add a select field that will change price in Woocommerce simple products

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读