S
S
shitprog2020-05-17 04:32:16
WooCommerce
shitprog, 2020-05-17 04:32:16

How to change the price of products in the cart?

I am making a bonus system for the store. I need to change the price of the goods in the basket on the checkout page, tell me how can I do it?

After I enter the number of bonuses to be written off, I send ajax when the cart is successfully updated.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
W
WP Panda, 2020-05-17
@shitprog

This is how the cart discount is done

add_filter( 'woocommerce_cart_calculate_fees', 'add_my_fee', 10, 1 );

function add_my_fee( $cart ) {
     $cart->add_fee( 'Моя мега скидка 100 рублей', -100 );
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question