将购物车商品的价格替换为 Woocommerce 中的自定义字段值

问题描述 投票:0回答:1

在 WooCommerce 中,我尝试用自定义字段价格替换购物车商品的价格。

这是我的代码:

function custom_cart_items_price ( $cart_object ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    foreach ( $cart_object->get_cart() as $cart_item ) {

        // get the product id (or the variation id)
        $id = $cart_item['data']->get_id();

        // GET THE NEW PRICE (code to be replace by yours)
        $new_price = (int)get_post_meta( get_the_ID(), '_c_price_field', true ); // <== Add your code HERE

        // Updated cart item price
        $cart_item['data']->set_price( $new_price ); 
    }
}

add_filter( 'woocommerce_before_calculate_totals', 'custom_cart_items_price');

但这不起作用。我做错了什么?

任何帮助将不胜感激。

php wordpress woocommerce cart product-price
1个回答
0
投票

如果您在购物车中将

get_the_ID()
get_post_meta()
一起使用,则不起作用。你应该使用:

add_action( 'woocommerce_before_calculate_totals', 'custom_cart_items_price');
function custom_cart_items_price ( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
         return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    foreach ( $cart->get_cart() as $cart_item ) {

         // get the product id (or the variation id)
         $product_id = $cart_item['data']->get_id();

         // GET THE NEW PRICE (code to be replace by yours)
         $new_price = get_post_meta( $product_id, '_c_price_field', true ); 

         // Updated cart item price
         $cart_item['data']->set_price( floatval( $new_price ) ); 
    }
}

代码位于活动子主题(或活动主题)的 function.php 文件中。

现在应该可以了

© www.soinside.com 2019 - 2024. All rights reserved.