I\'m trying to remove or hide the added to cart message at the top of my WooCommerce checkout page (I have removed the cart page so this message is showing up on the checkou
this worked for me:
add_filter( 'wc_add_to_cart_message', 'remove_add_to_cart_message' ); function remove_add_to_cart_message() { return; }