Updating cart subtotal in WooCommerce
问题 I want to update cart subtotal in WooCommerce. How can add action for modifying subtotal in WooCommerce? I have tried to by this code, but is not working. I would like to multiply by 12 the cart subtotal and to display this calculation on cart page. Here is my code: add_action( 'woocommerce_before_calculate_totals', 'add_custom_price' ); function add_custom_price( $total) { foreach ( $total->cart_contents as $key => $value ) { $modifiedtotal = $total->subtotal * 12; // -----------------------