动态购物车商品定价不适用于WooCommerce 3.0+中的订单

时间:2017-05-10 07:03:37

标签: php wordpress woocommerce cart price

我使用的是WooCommerce 3.0+,我已经在某个页面设置了产品价格。

       $regular_price = get_post_meta( $_product->id, '_regular_price', true);
      $buyback_percentage = get_post_meta( $_product->id, '_goldpricelive_buy_back', true);
      $fixed_amount = get_post_meta( $_product->id, '_goldpricelive_fixed_amount', true);
      $markedup_price = get_post_meta( $_product->id, '_goldpricelive_markup', true);
      $buyback_price = ($regular_price - $fixed_amount)/(1 + $markedup_price/100)  * (1-$buyback_percentage/100);
      $_product->set_price($buyback_price);

我的购物车价格正在更新,但当我点击提交订单时,订单对象似乎没有得到我设定的价格。它需要原产品价格。

关于如何实现这一目标的任何想法?

由于

1 个答案:

答案 0 :(得分:2)

已更新为get_price()方法...

您应该在此自定义附加功能,产品ID或产品ID数组中使用 woocommerce_before_calculate_totals 操作挂钩设置。
然后,对于每个人,您可以进行自定义计算,以设置将在购物车,结帐时和订单提交后设置的自定义价格。

以下是在WooCommerce版本3.0 +上测试的功能代码:

add_action( 'woocommerce_before_calculate_totals', 'adding_custom_price', 10, 1);
function adding_custom_price( $cart_obj ) {

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

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

    // Set below your targeted individual products IDs or arrays of product IDs
    $target_product_id = 53;
    $target_product_ids_arr = array(22, 56, 81);

    foreach ( $cart_obj->get_cart() as  $cart_item ) {
        // The corresponding product ID
        $product_id = $cart_item['product_id'];

        // For a single product ID
        if($product_id == $target_product_id){
            // Custom calculation
            $price = $cart_item['data']->get_price() + 50;
            $cart_item['data']->set_price( floatval($price) );
        } 

        // For an array of product IDs 
        elseif( in_array( $product_id, $target_product_ids_arr ) ){
            // Custom calculation
            $price = $cart_item['data']->get_price() + 30;
            $cart_item['data']->set_price( floatval($price) );
        }
    }
}

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

  

然后,您可以轻松地将我的假计算中的固定值替换为产品动态值与get_post_meta()函数中的固定值,就像在代码中一样,因为每个 $product_id 购物车项目......