Sarathlal N

Change item price from cart page - WooCommerce

Have you ever faced a situation to change item price in WooCommerce cart page.

Recently, one of my client requested to do this tweak in his store. Update the code with your conditions & put it in your theme’s functions.php file or your custom module file.

add_action( 'woocommerce_before_calculate_totals', 'bthu9v_recalc_price' );

function bthu9v_recalc_price( $cart_object ) {
	foreach ( $cart_object->get_cart() as $hash => $value ) {
		$value['data']->set_price( 10 );
	}
}

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.