我有一个场景,我需要通过根据预订的持续时间调整预订的整体成本来更改总租金价格。预订持续时间是客户定义的 4 天时间段。
4 天(最短持续时间)= 基本成本 + 区块成本 8 天(最长持续时间)= 基本成本 + 区块成本 +(区块成本 *0.75)。
基于WooCommerce 购物车中产品的更改价格和我进行了一些更改的结帐答案代码。这是我的代码:
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 ){
$booking_id = $cart_item['booking']['_booking_id'];
$booking = get_wc_booking( $booking_id );
$base_cost = get_post_meta( $cart_item['product_id'], '_wc_booking_cost', true );
$block_cost = get_post_meta( $cart_item['product_id'], '_wc_booking_block_cost', true );
if ( $booking ) {
$duration = $cart_item['booking']['duration'];
if ($duration == 8) {
$new_price = $base_cost +$block_cost + ($block_cost * 0.75); //Calculate the new price
$cart_item['data']->set_price( $new_price ); // Set the new price
}
}
}
}
这很好用,但我想知道是否有一种方法可以使用诸如 woocommerce_bookings_pricing_fields 之类的操作永久设置它,以便折扣价显示在产品页面本身上。