【发布时间】:2018-01-22 06:29:41
【问题描述】:
在 WooCommerce 中,我试图用自定义字段价格替换购物车商品的价格。
这是我的代码:
function custom_cart_items_price ( $cart_object ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
foreach ( $cart_object->get_cart() as $cart_item ) {
// get the product id (or the variation id)
$id = $cart_item['data']->get_id();
// GET THE NEW PRICE (code to be replace by yours)
$new_price = (int)get_post_meta( get_the_ID(), '_c_price_field', true ); // <== Add your code HERE
// Updated cart item price
$cart_item['data']->set_price( $new_price );
}
}
add_filter( 'woocommerce_before_calculate_totals', 'custom_cart_items_price');
但它不起作用。我做错了什么?
任何帮助将不胜感激。
【问题讨论】:
标签: php wordpress woocommerce cart price