1

我想知道如何根据一些内部编码更新价格计算。这是需要进入购物车项目的价格,到目前为止,购物车项目仅显示产品的基本成本。

从技术上讲,当将产品添加到购物车时,应该更改价格。

我认为它必须像这样计算:

global $woocommerce;
$items = $woocommerce->cart->get_cart();

foreach($items as $item => $values) { 
    if ($value['product_id'] == $product_id) {
        $value['data']->set_price($price);
    }  
} 

由于这不起作用,我需要在哪里/何时放置 set_price() 函数。当这个被调用时,购物车仍然是空的并且没有进入循环。

我的问题似乎与 Woocommerce 预订有关,因为未设置以下行 $this->price 然后调用 get_base_cost 导致仅显示基本成本而不是“重新计算的”价格。由于它是可预订的产品,这似乎使它变得更加棘手。

public function get_price($context = ‘view’) {
    return apply_filters( 'woocommerce_get_price', $this->price ? $this->price : $this->get_base_cost(), $this );
}

仔细观察 $this,我至少可以看到 class_wc_product_booking 中的两个价格,其中 300 是“基本成本”,而 250 是必须支付的重新计算价格。

我确实删除了很多与此问题无关的数组。

WC_Product_Booking Object ( 
[availability_rules:WC_Product_Booking:private] =>  Array ( ) 
[object_type:protected] => product 
[post_type:protected] => product 
[cache_group:protected] => products 
[data:protected] => 
    Array ( 
        [name] => Booking Test 
        [slug] => Booking Test
        [sku] => 
        [price] => 300
        [regular_price] => 
        [sale_price] => 
        [rating_counts] => Array ( ) 
        [average_rating] => 0 
        [review_count] => 0
    ) 
[supports:protected] => Array ( ) 
[id:protected] => 1708 
[changes:protected] => Array ( [price] => 250 ) 
[meta_data:protected] => 
[product_type] => booking
) 
4

2 回答 2

3

您是否尝试在发送到购物车之前更改价格自定义方式如果是,那么您需要按会话发送以下两个挂钩将有很大帮助

add_filter( 'woocommerce_add_cart_item' , 'set_woo_prices');
add_filter( 'woocommerce_get_cart_item_from_session',  'set_session_prices', 20 , 3 );

function set_woo_prices( $woo_data ) {
  session_start();    
  $tac_dd_discounted_price = $_SESSION['']; // get the updated new price field 

  if ( ! isset($tac_dd_discounted_price ) || empty ($tac_dd_discounted_price ) ) { return $woo_data; }
  $woo_data['data']->set_price( $tac_dd_discounted_price );
  $woo_data['my_price'] = $tac_dd_discounted_price;
  return $woo_data;
}

function  set_session_prices ( $woo_data , $values , $key ) {
    if ( ! isset( $woo_data['my_price'] ) || empty ( $woo_data['my_price'] ) ) { return $woo_data; }
    $woo_data['data']->set_price( $woo_data['my_price'] );
    return $woo_data;
}
于 2017-12-19T09:35:52.397 回答
2

这需要在woocommerce_before_calculate_totals动作钩子上完成,才能工作。下面是一个工作示例,它为购物车项目中的每个产品价格增加了 30:

add_action( 'woocommerce_before_calculate_totals', 'custom_cart_item_price', 10, 1 );
function custom_cart_item_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 ){
        $price = $cart_item['data']->get_price(); // Get the product price
        $new_price = $price + 30; // the calculation
        $cart_item['data']->set_price( $new_price ); // Set the new price
    }
}

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


注意: global $woocommerce; with$woocommerce->cart已过时,已被替换为WC()->cart

于 2017-12-19T08:31:03.983 回答