Change cart item prices in Woocommerce 3

Update 2021 (Handling mini cart custom item price) With WooCommerce version 3.0+ you need: To use woocommerce_before_calculate_totals hook instead. To use WC_Cart get_cart() method instead To use WC_product set_price() method instead Here is the code: // Set custom cart item price add_action( ‘woocommerce_before_calculate_totals’, ‘add_custom_price’, 1000, 1); function add_custom_price( $cart ) { // This is necessary … Read more