我正在尝试计算WooCommerce可预订产品的基本成本,并设法使用以下方法完成该任务:
function modify_baseprice() {
global $post;
$productid = $post->ID;
$product = new WC_Product($productid);
$product_block_price = $product->wc_booking_block_cost;
$product->wc_booking_cost = ($product_block_price*0.6) + 100;
$pricing_data = update_post_meta( $productid, '_wc_booking_cost', $product->wc_booking_cost);
return $pricing_data;
}
add_action( 'woocommerce_bookings_after_booking_base_cost', 'modify_baseprice', 10, 3 );
它确实可以正确计算基本成本,但是我需要刷新页面两次才能看到它出现在“基本成本”字段中。有没有一种方法可以使它在第一次保存后出现?
答案 0 :(得分:1)
自Woocommerce 3发布以来,CRUD objects已实现。 WC_Product
对象就是这种情况,Woocommerce Bookings插件也是如此。因此,您可以使用可用的Getters和setters方法,因为在大多数情况下,属性不再可用。
以下代码使用这种更好的方式(费用是在产品中设置的,无需刷新页面)
add_action( 'woocommerce_process_product_meta_booking', 'modify_bookable_product_base_cost', 100, 1 );
function modify_bookable_product_base_cost( $product_id ){
// Get an instance of the WC_Product object
$product = wc_get_product( $product_id );
// We check that we have a block cost before
if ( $product->get_block_cost() > 0 ){
// Calculation
$new_booking_cost = ( $product->get_block_cost() * 0.6 ) + 100;
$product->set_cost( $new_booking_cost ); // Set the new calculated cost in the product
$product->save(); // Save the product data
}
}
代码进入您的活动子主题(活动主题)的function.php文件中。经过测试,可以正常工作。