Answer the question
In order to leave comments, you need to log in
WooCommerce not changing cart total?
add_action( 'woocommerce_calculate_totals', 'woocommerce_calculate_total', 10, 1 );
function woocommerce_calculate_total( $cart ) {
if($cart->subtotal < 300){
$cart->subtotal += 85;
$cart->total += 85;
}
}
Answer the question
In order to leave comments, you need to log in
It was necessary to put a hook on woocommerce_after_calculate_totals instead of what I used.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question