我想知道如何根据一些内部编码更新价格计算 . 这是需要进入购物车项目的价格,到目前为止,购物车项目仅显示产品的基本成本 .
从技术上讲,当产品添加到购物车时,价格应该改变 .
我想它必须像这样计算:
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
)